對檔案的讀寫操作可通過以下三個類來進行:
一、file類
string path = @"f:\fcj\haha.txt";
if (!file.exists(path))
file.create(path);
file.writealltext(path, "今天c#複習結束~~~");
二、streamwriter、streamreader類
string path = @"f:\fcj\haha.txt";
streamwriter sw = new streamwriter(path);
sw.write(@"通過streamwriter進行寫操作,
通過streamwriter進行寫操作,
通過streamwriter進行寫操作");
三、filestream類
C 檔案讀寫操作
在c 中,有乙個stream這個類,所有的i o都以這個 流 類為基礎的,包括我們要認識的檔案i o,stream這個類有兩個重要的運算子 1 插入器 向流輸出資料。比如說系統有乙個預設的標準輸出流 cout 一般情況下就是指的顯示器,所以,cout write stdout n 就表示把字串 wr...
C 檔案讀寫操作
這個很基礎,但總是記不牢。c 檔案流 fstream 檔案流 ifstream 輸入檔案流 ofstream 輸出檔案流 建立乙個文字檔案並寫入資訊 同向螢幕上輸出資訊一樣將資訊輸出至檔案 include include void main 執行後開啟檔案d me.txt,其內容如下 檔案操作 開啟...
C 檔案讀寫操作
1 檔案寫入 ofstream類 ofstream const char szname,int nmode ios out,int nprot filebuf openprot szname 指定將要開啟的檔名 nmode 指定檔案開啟的模式,包括 ios ate 先執行乙個定位,將檔案指標移動至檔...