C 檔案操作

2022-08-22 12:57:10 字數 863 閱讀 6157

標頭檔案:#include

使用前需要在申明全域性變數的地方寫上:

ifstream fin;

ofstream fout;

優勢:適合做遊戲的存檔、讀檔操作,可以同時  通過檔案讀入(fin>>a;)、輸出(fout<>a;)、輸出(cout《操作:

fin.open(檔名);  開啟檔案讀入,不會清空檔案

fin.close();       關閉檔案讀入,一定要,否則無法開啟另乙個檔案

fout.open(檔名); 開啟檔案輸出,會清空檔案

fout.close();      關閉檔案輸出,一定要,否則無法開啟另乙個檔案

ofstream(檔名);  建立檔案

deletefile(檔名);刪除檔案

string s="123456";

fin.open((s+".txt").c_str());

fout.open((s+".txt").c_str());

建立、刪除檔案:

string s="123456";

ofstream((s+".txt").c_str());

deletefile((s+"txt").c_str());

也可以這樣寫:

string s="123456.txt";

fin.open(s.c_str());

fout.open(s.c_str());

ofstream(s.c_str());

deletefile(s.c_str());

fin>>x;            從檔案中讀入x,用法與cin相同

fout<|

C 檔案操作與C 的檔案操作

c filestream 檔案流 主要用於使用二進位制方式讀寫檔案資料,可讀取任何檔案 建立filestream物件 e 建立filestream物件 filemode 指定系統開啟檔案的方式filestream fileaccess 指定檔案的訪問方式 read唯讀,write只寫,readwri...

C 檔案操作

c 追加檔案 sw.writeline 追逐理想 sw.writeline kzlll sw.writeline net筆記 sw.flush sw.close c 拷貝檔案 string orignfile,newfile file.copy orignfile,newfile,true c 刪除...

C 檔案操作

c 檔案操作 軒軒 發表於 2006 2 18 12 40 16 在c 中,有乙個stream這個類,所有的i o都以這個 流 類為基礎的,包括我們要認識的檔案i o,stream這個類有兩個重要的運算子 1 插入器 向流輸出資料。比如說系統有乙個預設的標準輸出流 cout 一般情況下就是指的顯示器...