public static final string pathseparator 與系統有關的路徑分割符
string pathseparator = file.pathseparator;在 unix 系統上,此字段為system.out.println(pathseparator);// windows列印 ; linux列印 :
':'
;在 microsoft windows 系統上,它為';'
。
public static final string separator 與系統有關的預設名稱分隔符
string separator = file.separator;在 unix 系統上,此字段的值為system.out.println(separator);// windows列印 \ linux列印 /
'/'
;在 microsoft windows 系統上,它為'\\'
。
例如
string filename = "d:\\test";string filename = "d:"+file.separator+"test";
C 讀取特定路徑下檔案目錄及檔名稱
1 讀取某給定路徑下所有資料夾與檔名稱,並帶完整路徑。如下 1 void getallfiles string path,vector files 14 else 17 while findnext hfile,fileinfo 0 尋找下乙個,成功返回0,否則 1 18 findclose hfi...
C 讀取特定路徑下檔案目錄及檔名稱
1 讀取某給定路徑下所有資料夾與檔名稱,並帶完整路徑。如下 void load dir string path,vector files else while findnext hfile,fileinfo 0 尋找下乙個,成功返回0,否則 1 findclose hfile 該函式有兩個引數,第乙...
C 讀取特定路徑下檔案目錄及檔名稱
這幾天在弄乙個專案,需要讀取給定路徑下的所有資料夾名稱或所有帶字尾的檔名。查了下c 的資料,發現有很多方法,這裡總結其中的一種,其他用法類似。主要用到了以下幾個標頭檔案 類 io.h,fstream,string。1 讀取某給定路徑下所有資料夾與檔名稱,並帶完整路徑。如下 1 void getall...