■ DirectoryInfo 클래스의 Name 속성을 사용해 디렉토리명을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.IO; #region 디렉토리명 구하기 - GetDirectoryName(directoryPath) /// <summary> /// 디렉토리명 구하기 /// </summary> /// <param name="directoryPath">디렉토리 경로</param> /// <returns>디렉토리명</returns> public string GetDirectoryName(string directoryPath) { return new DirectoryInfo(directoryPath).Name; } #endregion |