รหัสด้านล่างคือข้อเสนอแนะของ Microsoft วิธีคัดลอกไดเรกทอรี
และใช้ร่วมกันโดย dear @iato
แต่เพียงคัดลอกไดเรกทอรีย่อยและไฟล์ของโฟลเดอร์ต้นทางซ้ำและไม่คัดลอกโฟลเดอร์ต้นทางที่เป็นของตนเอง (เช่นคลิกขวา -> คัดลอก )
แต่มีวิธีที่ยุ่งยากด้านล่างคำตอบนี้:
private static void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs = true)
{
// Get the subdirectories for the specified directory.
DirectoryInfo dir = new DirectoryInfo(sourceDirName);
if (!dir.Exists)
{
throw new DirectoryNotFoundException(
"Source directory does not exist or could not be found: "
+ sourceDirName);
}
DirectoryInfo[] dirs = dir.GetDirectories();
// If the destination directory doesn't exist, create it.
if (!Directory.Exists(destDirName))
{
Directory.CreateDirectory(destDirName);
}
// Get the files in the directory and copy them to the new location.
FileInfo[] files = dir.GetFiles();
foreach (FileInfo file in files)
{
string temppath = Path.Combine(destDirName, file.Name);
file.CopyTo(temppath, false);
}
// If copying subdirectories, copy them and their contents to new location.
if (copySubDirs)
{
foreach (DirectoryInfo subdir in dirs)
{
string temppath = Path.Combine(destDirName, subdir.Name);
DirectoryCopy(subdir.FullName, temppath, copySubDirs);
}
}
}
หากคุณต้องการคัดลอกเนื้อหาของโฟลเดอร์ต้นทางและโฟลเดอร์ย่อยซ้ำคุณสามารถใช้มันได้ดังนี้:
string source = @"J:\source\";
string dest= @"J:\destination\";
DirectoryCopy(source, dest);
แต่ถ้าคุณต้องการคัดลอกไดเรกทอรีต้นทางมันเอง (คล้ายกับที่คุณคลิกขวาบนโฟลเดอร์ต้นทางและคลิกคัดลอกจากนั้นในโฟลเดอร์ปลายทางที่คุณคลิกวาง) คุณควรใช้ดังนี้:
string source = @"J:\source\";
string dest= @"J:\destination\";
DirectoryCopy(source, Path.Combine(dest, new DirectoryInfo(source).Name));