跟大家介紹幾個.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"