C#에서 디렉터리 내용을 재귀적으로 복사
전체 디렉토리의 내용을 복사하는 것은 소프트웨어 개발에서 일반적인 작업입니다. System.IO에서 이를 달성할 수 있는 직접적인 방법은 없는 것 같지만 대안이 있습니다.
해결 방법은 Microsoft.VisualBasic에 대한 참조를 추가하여 액세스할 수 있는 Microsoft.VisualBasic.Devices.Computer 클래스를 사용하는 것입니다.
<code class="language-csharp">new Microsoft.VisualBasic.Devices.Computer(). FileSystem.CopyDirectory(sourceFolder, outputFolder);</code>
그러나 이 접근 방식은 우아한 해결책으로 간주되지 않습니다. 보다 강력한 접근 방식에는 다음 단계가 포함됩니다.
다음 코드는 이 접근 방식을 보여줍니다.
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!