C#高效複製目錄內容
C#的System.IO庫在復制整個目錄方面似乎顯得力不從心,因為它缺少像CopyDirectory這樣的直接方法。雖然VB中存在相應的簡便方法,但這並非理想的解決方案。本文提供一種更高效的遞歸方法。
解決方案:
CopyFilesRecursively
方法採用遞歸方式創建目錄並複製文件。它遍歷源目錄,在目標位置創建相應的目錄。然後,它複製每個文件,並用相同名稱的文件替換任何現有文件。
<code class="language-csharp">private static void CopyFilesRecursively(string sourcePath, string targetPath) { // 创建必要的目录 foreach (string dirPath in Directory.GetDirectories(sourcePath, "*", SearchOption.AllDirectories)) { Directory.CreateDirectory(dirPath.Replace(sourcePath, targetPath)); } // 复制文件 foreach (string newPath in Directory.GetFiles(sourcePath, "*.*", SearchOption.AllDirectories)) { File.Copy(newPath, newPath.Replace(sourcePath, targetPath), true); } }</code>
以上是如何在C#中有效複製目錄內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!