1、文字檔案的寫入
//建立檔案流
filestream filestream = new filestream("c:\\myfile\\file.txt", filemode.create);
//建立寫入器
streamwriter sw = new streamwriter(filestream);
//以流的方式寫入資料
sw.write(text.text);
//關閉寫入器
sw.close();
//關閉檔案流
sw.close();
注意:如果是系統盤根目錄,會拒絕訪問,可以加乙個資料夾,或者換乙個盤儲存。
2. 文字檔案讀取
filestream filestream = new filestream("c:\\myfile\\file.txt", filemode.open);
streamreader sr = new streamreader(filestream);
this.text.text = sr.readtoend();
sr.close();
filestream.close();
3.模擬系統日誌寫入
filestream.close();
4.刪除檔案
file.delete("c:\\myfile\\file.txt");
5.複製檔案//(1)先判斷目標資料夾中是否存在同名檔案,若存在則直接複製會出錯;(2)當前檔案是否存在
file.copy
6.移動檔案//(1)先判斷目標資料夾中是否存在同名檔案,若存在則直接複製會出錯;(2)當前檔案是否存在
file.move
文字檔案操作
文字檔案操作 編寫乙個程式demo.py,要求執行該程式後,生成demo new.py檔案,其中內容與demo.py一樣,只是在每一行的後面加上行號以 開始,並且所有行的 符號垂直對齊。filename demo.py with open filename,r as fp lines fp.read...
C 文字檔案操作
如何向現有檔案中新增文字 usingsystem usingsystem.io classtest 如何建立乙個新文字檔案並向其中寫入乙個字串。方法可提供類似的功能。usingsystem usingsystem.io publicclasstexttofile alreadyexists.file...
C 文字檔案操作
如何向現有檔案中新增文字 using system using system.io class test 如何建立乙個新文字檔案並向其中寫入乙個字串。writealltext 方法可提供類似的功能。using system using system.io public class texttofil...