File類的建立刪除複製寫入讀取和追加

2021-10-01 05:01:53 字數 1990 閱讀 8626

利用file類建立乙個檔案

利用file類刪除乙個檔案

file.

delete

(@"c:\users\dell\desktop\new.txt"

);

利用file類複製乙個檔案

file.

copy

(@"c:\users\dell\desktop\new.txt"

,@"c:\users\dell\desktop\code.txt");

console.

writeline

("複製成功");

利用file類寫入乙個檔案

string s =

"hhhhh"

;byte

buffer = encoding.default.

getbytes

(s);

file.

writeallbytes

(@"c:\users\dell\desktop\new.txt"

, buffer)

; console.

write

("成功");

在讀取之前我們要先了解編碼編碼:如果儲存這個檔案的編碼和開啟這個檔案的編碼不一樣,就會出現亂碼

utf-8,utf-32,utf-7國際通用的編碼格式,共同組成了unicoe

gb2312:簡體

gbk:繁體+簡體

ascii

利用file類讀取資料

byte

buffer = file.

readallbytes

(@"c:\users\dell\desktop\new.txt");

//將位元組陣列中的每乙個元素都要按照我們指定的編碼格式解碼成字串

利用file類追加資料

file.

(@"c:\users\dell\desktop\new.txt"

,"沒有辦法");

File類的建立與刪除,file類常用方法的呼叫

file在建立物件時,不能建立資料夾和檔案,只是對檔案的乙個描述 對檔案的建立,構造方法 public static void test1 測試資料夾的建立,在規定的位置處 測試資料夾的建立與刪除 public static void test2 else 建立多個路徑下的資料夾 public st...

file 檔案類 建立 刪除判斷 和建立資料夾

建立 file file new file e io0803 demo01.txt file.createnewfile 先對要建立的檔案進行描述然後呼叫createnewfile 方法 這個方法只能建立檔案不能建立資料夾 刪除 file file new file e io0803 aa bool...

第四章 File類 File類的建立功能

file類的建立功能 1 建立功能建立好以後點著專案f5重新整理下。或者點著專案右擊選點refresh f5 public boolean createnewfile 建立檔案 如果存在這樣的檔案,就不建立了 public boolean mkdir 建立資料夾 如果存在這樣的資料夾,就不建立了 p...