C#

[C#]파일경로에서 파일명만 색출하기

string Path = “/test/com/dd/test.xml”;
string FileName = Path.GetFileName(Path);

파일명과 확장자만 뽑아낼 수 있다.

자바에서 저런 메소드가 있는지 모르겠네…

 

Leave a Reply

error: Content is protected !!