디렉토리를 만들려면 먼저 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: 디렉토리에 Demo 폴더를 생성합니다.
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: 디렉토리에 하위 폴더가 있는 demo 폴더를 생성합니다.
위 내용은 폴더가 존재하지 않는 경우 C#에서 폴더를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!