給大家介紹幾個.Net中Path類的幾個方法:
1. Path.combine(string, string)
根據給出的兩個路徑, 返回一個路徑.
例如:
string CompletePath = System.IO.Path.Combine(@"c:\MyApp", @"Images\skyline.jpg");
將會返回一個全路徑 c:\MyApp\Images\skyline.jpg
第一個參數中有無"\"結尾都可以.
2. Path.GetExtension(string)
返回給定文件路徑的擴展名.例如:
string FileExtention = System.IO.Path.GetExtention(@"C:\MyApp\Images\skyline.jpg");
將會返回 "jpg"
3. Path.GetFileName(string)
給出文件名的全路徑,返回文件名(包括擴展名).例如:
string fileName = System.IO.Path.GetFileName(@"c:\MyApp\Images\skyline.jpg");
將會返回"skyline.jpg"