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