더북(TheBook)

58.3 Path 클래스로 파일 이름 및 확장자, 폴더 정보 얻기

다음 내용을 C# 인터렉티브에 입력한 후 실행해 보세요. Path 클래스의 GetFileName 같은 정적 메서드를 사용하면 파일 이름 및 확장자 등을 손쉽게 알 수 있습니다.

> var dir = "C:\\Website\\RedPlus\\images\\test.gif";
> Path.GetFileName(dir)
"test.gif"
> Path.GetFileNameWithoutExtension(dir)
"test"
> Path.GetExtension(dir)
".gif"
> Path.GetDirectoryName(dir)
"C:\\Website\\RedPlus\\images"
> Path.GetFullPath(dir)
"C:\\Website\\RedPlus\\images\\test.gif"
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.