請讓我知道如何將文件夾中的所有文件複製到c#.net中的另一個文件夾中。如何將文件夾中的所有文件複製到c中的另一個文件夾中#
目前我使用:
int j = 1;
int k = 1;
for (j = 1; j < 5; j++)
{
for (k = 1; k < 32; k++)
{
string sourcePath = @Desktop_location + "\Test" + k + ".log";
if (System.IO.File.Exists(sourcePath))
{
File.Copy(@Desktop_location + "\\Statistics\\Server" + j + "\Test" + k + ".log", @Desktop_location + "\\Statistics\\Transfer\\test" + j + k + ".log");
//Console.WriteLine("Test Result");
}
else
{
//Console.WriteLine("Test");
能完成這項工作?你想以某種方式改進它嗎? – Jodrell 2013-03-18 11:25:05
請別人幫助我如何將多個文件夾中的所有文件複製到一個文件夾中。另外,請建議如果具有相同名稱的文件存在於多個文件夾中,但它的區別是不同的。 – Dorgy 2013-03-18 11:25:45
這些魔術數字'5'和'32'是什麼? – TalentTuner 2013-03-18 11:25:46