디렉터리를 만들려면 먼저 C#에서 System.IO 네임스페이스를 가져와야 합니다. 네임스페이스는 디렉토리 생성, 복사, 이동 및 삭제를 위한 정적 메서드에 액세스할 수 있는 라이브러리입니다.
폴더가 없으면 컴파일러에서 예외가 발생하므로 C#에서 파일 작업을 수행하기 전에 항상 디렉터리가 있는지 확인하는 것이 좋습니다.
예
using System; using System.IO; namespace DemoApplication { class Program { static void Main(string[] args) { string folderName = @"D:\Demo Folder"; // If directory does not exist, create it if (!Directory.Exists(folderName)) { Directory.CreateDirectory(folderName); } Console.ReadLine(); } } }
위의 코드는 데모를 생성합니다. D:디렉터리의 폴더입니다.
Directory.CreateDirectory를 사용하여 하위 폴더를 만들 수도 있습니다.
예
using System; using System.IO; namespace DemoApplication { class Program { static void Main(string[] args) { string folderName = @"D:\Demo Folder\Sub Folder"; // If directory does not exist, create it if (!Directory.Exists(folderName)) { Directory.CreateDirectory(folderName); } Console.ReadLine(); } } }
위의 코드는 하위 폴더가 있는 데모 폴더를 생성합니다. D:디렉터리에 있습니다.