|
|
|
C# การ move file จาก ที่หนึ่งไปอีกที่หนึ่งครับ ต้องการเป็นไฟร์รูปภาพนะครับ |
|
|
|
|
|
|
|
ผมทำแบบนี้แล้วมันไม่ได้อ่าครับ T_T
Code (C#)
/*
* Created by SharpDevelop.
* User: 5020003435
* Date: 5/15/2014
* Time: 9:51 AM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.IO;
namespace FileUpLoad2Serv
{
/// <summary>
/// Description of MainForm.
/// </summary>
public partial class MainForm : Form
{
public MainForm()
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
//
// TODO: Add constructor code after the InitializeComponent() call.
//
}
string Path,A;
void MainFormLoad(object sender, EventArgs e)
{
Path = Application.StartupPath;
}
void BtSentFileClick(object sender, EventArgs e)
{
if(ckack() == true)
{
File.Move(A,Path+@"\test2");
lbshow.Text = "Move File OK";
}
else
{
lbshow.Text = "Move ERROR";
}
}
private bool ckack()
{
string[] A = Directory.GetFiles(Path+@"\test1","*.jpg");
try
{
return true;
}
catch
{
return false;
}
}
}
}
|
|
|
|
|
Date :
2014-05-15 14:23:48 |
By :
ต๋องคับ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บอกแค่แนวคิดละกัน
1.เตรียมไฟล์ที่ต้องการย้าย
-ก่อนอื่นแสกนหาไฟล์ภาพทั้งหมดที่อยู่ในโฟลเดอร์ก่อน จากนั้นเก็บใส่ List Array
-เก็บ Path ของโฟลเดอร์ไว้
2.เตรียมโฟลเดอร์ปลายทาง
-เช็คโฟลเดอร์ปลายทางว่ามีอยู่จริงไหม มีผ่าน ไม่มีสร้างโฟลเดอร์ใหม่
3.ทำการย้าย
For each item as String in ItemListArray
---->System.io.File.Move(ไฟล์ต้นทาง,ไฟล์ปลายทาง)
Next
|
|
|
|
|
Date :
2014-05-15 15:34:47 |
By :
ฟุริคุริ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมไม่เคยใช้ array อ่าครับ แนะนำหน่อยครีับ
|
|
|
|
|
Date :
2014-05-16 07:46:19 |
By :
ต๋องคับ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|