c# .netでフォルダ内のすべてのファイルを別のフォルダにコピーする方法を教えてください。
現在私は使用しています:
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");