먼저 디렉터리에서 작동하는 DirectoryInfo를 사용합니다. 그 안에 설정된 매개변수는 파일 경로입니다 -
DirectoryInfo dir = new DirectoryInfo(@"D:\new\");
디렉토리의 이름을 얻으려면 Name 속성을 사용하십시오 -
dir.Name
다음은 디렉토리 이름을 표시하는 코드입니다 -
예
using System.IO; using System; public class Program { public static void Main() { DirectoryInfo dir = new DirectoryInfo(@"D:\new\"); // displaying the name of the directory Console.WriteLine(dir.Name); } }
출력
D:\new\