[C#] 전체경로명에서 파일명만 추출
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
[C#] 전체경로명에서 파일명만 추출
방법1) Substring(),LastIndexOf() 이용한 1줄 코딩
string fullName = @"c:\abcd\efg\hij.txt";
string FileNameOnly = fullName .Substring(fullName .LastIndexOf("\\") + 1);
방법2) Path 를 이용
string fullName = @"c:\abcd\efg\hij.txt";
string FileNameOnly = Path.GetFileName(fullName);