檔案操作總結

2021-10-19 08:27:16 字數 853 閱讀 3014

檔案操作工具類:

/**

* 判斷乙個資料夾是否存在,若不存在則建立

* @param dirpath 資料夾路徑 例:"d:\\dir"

*/public static void createdocument(string dirpath)else}}

/*** 判斷乙個檔案是否存在

* @param filepath 檔案的路徑 舉例:"d:\\test-utf.txt"

* @return true:表示檔案存在 false:表示檔案不存在

*/public static boolean judgefile(string filepath)

return b;

}/**

* 判斷乙個檔案是否存在,若不存在則建立

* @param dirpath 檔案的存放路徑 例:"d:\\dir"

* @param filename 檔名

*/public static void createfile(string dirpath, string filename)

file file = new file(dirpath, filename);

//判斷資料夾是否存在

if(!file.exists())else

}}catch (exception e)

}

main方法:

public static void main(string args)
執行結果:

檔案操作總結

檔案操作 開啟 fopen 檔案指標名 fopen 檔名,使用檔案方式 file fp fp file a r 意義 在當前目錄下開啟檔案file a進行 讀 操作,並使fp指向該檔案。file fp fp c test rb 意義 開啟c盤的根目錄下的檔案test,這是乙個二進位制檔案,只允許按二...

VC檔案操作總結

1.讀寫檔案 cstring strpath c test.txt 檔案路徑 cfile file if file.open strpath,cfile modecreate cfile modenotruncate cfile modewrite 寫檔案 cstring strpath c tes...

WinCE 檔案操作總結

用的三種方法,歸納如下 方法一 使用mfc的cfile類 開啟用open,關閉用close 檔案指標移動用seek,讀檔案用read 寫檔案用write,獲取檔案屬性可以使用getfilestatus方法,這個可以檢視msdn,下面給幾行簡單 cfile file bool isopenok fil...