728x90 유니티 에셋 복사1 C#, 폴더 및 파일 전체 복사 완전 복제 스크립트로 파일 또는 폴더 자체를 복제가 필요한 상황이 생겨 작성하게 되었습니다. 스크립트 public static class Utils { /// /// 폴더 복제 (하위 폴더 및 파일 모두) /// /// /// public static void CloneFolder(string sourceFolderPath, string destinationFolderPath) { if (Directory.Exists(sourceFolderPath)) { // 폴더 생성 Directory.CreateDirectory(destinationFolderPath); var files = Directory.GetFiles(sourceFolderPath); // 파일 복사 foreach (var file in fi.. 2023. 7. 4. 이전 1 다음 반응형