.NET에서 Path 클래스의 여러 메서드를 소개하겠습니다.
1. Path.combine(string, string)
주어진 두 경로가 주어진 경로를 반환합니다.
예를 들어:
string CompletePath = System.IO.Path.Combine(@"c:MyApp", @"Imagesskyline.jpg");
전체 경로 c:MyAppImagesskyline.jpg를 반환합니다.
첫 번째 매개변수가 ""로 끝나는지 여부는 중요하지 않습니다.
2. Path.GetExtension(string)
지정된 파일 경로의 확장자를 반환합니다. 예:
string FileExtention = System.IO.Path.GetExtention(@"C:MyAppImagesskyline.jpg");
"jpg"를 반환합니다
. 3. Path.GetFileName(string)
파일 이름의 전체 경로가 주어지면 파일 이름(확장자 포함)을 반환합니다. 예:
string fileName = System.IO.Path.GetFileName(@"c:MyAppImagesskyline.jpg");
"skyline.jpg"를 반환합니다.