C 獲取檔名相關函式

2021-10-04 20:06:33 字數 475 閱讀 1115

首先宣告乙個帶完整路徑的字串

var path = @"d:\test.txt";
獲取檔名(包含副檔名)

console.writeline(path.getfilename(path));
列印結果:

test.txt
獲取檔名(不包含副檔名)

console.writeline(path.getfilenamewithoutextension(path));
列印結果:

test
獲取副檔名

console.writeline(path.getextension(path));
列印結果:

txt

獲取類名相關

js中獲取dom節點的類有3種方法 1 classlist h5的方法,僅相容ie10 配套帶有remove等api 2 getattribute class 據說在低版本ie有相容問題,建議用方法3 3 classname 這個方法萬能 其實要講的是看到vue原始碼裡面的乙個方法,相容ie9乙個對...

C 檔案路徑獲取函式和檔案名字獲取函式

1.獲取絕對檔案路徑 system.io.path.getfullpath string path string filename myfile.ext string path1 mydir string path2 mydir string fullpath fullpath path.getfu...

c 檔名遞迴獲取

region 檔名遞迴獲取 獲取指定目錄中的匹配項 檔案或目錄 要搜尋的目錄 項名模式 正則 null表示忽略模式匹配,返回所有項 是否搜尋子目錄 是否拋異常 private static string getfilesystementries string dir,string regexpatt...