隨手筆記- C# 路徑中取得檔案名稱

筆記- C# 如何在路徑中取得檔案名稱

//***路徑中取得檔案名稱
Path.GetFileName(string path);
string path = "D://Test//Test.txt"; 
string filename = Path.GetFileName(path); 
// filename = "Test.txt"

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

PHP Code Snippets Powered By : XYZScripts.com
返回頂端