|
![](/images/resource/spacer.gif) |
|
C# WinApp เขียนโค๊ด replace folder เวลา copy/move folder ยังไงครับ |
|
![](/images/resource/viewboard_01.gif?v=1001) |
|
|
![](/images/resource/viewboard_03.gif?v=1001) |
![](/images/resource/viewboard_04.gif?v=1001) |
|
Code (C#)
string fol = System.IO.Path.GetFileName(directoryName_loopVariable);
cri.ForEach((string item) => { fol = fol.Replace(item, "").Trim(); });
fol = System.IO.Path.GetDirectoryName(directoryName_loopVariable) + "\\" + fol;
try
{
System.IO.DirectoryInfo _dirInfo = new System.IO.DirectoryInfo(directoryName_loopVariable);
_dirInfo.MoveTo(fol);
}
catch
{
foreach (string file in System.IO.Directory.GetFiles(directoryName_loopVariable, "*.*"))
{
string _file =fol + "\\" + System.IO.Path.GetFileName(file);
if (System.IO.File.Exists(_file) && _file != file)
{
string stg;
int i = 1;
do
{
stg = System.IO.Path.GetDirectoryName(_file) + "\\" + System.IO.Path.GetFileNameWithoutExtension(_file) + "_" + i + System.IO.Path.GetExtension(_file);
i++;
} while (System.IO.File.Exists(stg));
_file = stg;
}
System.IO.File.Move(file, _file);
System.Threading.Thread.Sleep(10);
}
try { new System.IO.DirectoryInfo(directoryName_loopVariable).Delete(); }catch{}
}
//"Cannot create a file when that file already exists."
ทั้ง copy ทั้ง move อิรุงตุงนุง เลยครับ
แต่เหมือนมันจะลบ โฟลเดอร์เก่าไม่ได้ครับ
System.IO.DirectoryInfo(directoryName_loopVariable).Delete()
|
![](/images/resource/blockviewtopic_01.gif?v=1001) |
![](/images/resource/blockviewtopic_02.gif?v=1001) |
![](/images/resource/blockviewtopic_03.gif?v=1001) |
![](/images/resource/blockviewtopic_04.gif?v=1001) |
Date :
2015-08-24 18:22:53 |
By :
lamaka.tor |
|
![](/images/resource/blockviewtopic_06.gif?v=1001) |
![](/images/resource/blockviewtopic_07.gif?v=1001) |
![](/images/resource/blockviewtopic_08.gif?v=1001) |
![](/images/resource/blockviewtopic_09.gif?v=1001) |
|
|
![](/images/resource/viewboard_06.gif?v=1001) |
![](/images/resource/viewboard_07.gif?v=1001) |
|
![](/images/resource/viewboard_08.jpg?v=1001) |
![](/images/resource/viewboard_09.gif?v=1001) |
|
|
|
![](/images/digitalocean-banner.jpg)
|
Load balance : Server 01
|