C 檔案操作

2022-03-11 12:35:41 字數 641 閱讀 3775

1 #include 

2 #include 34

using

namespace std;56

void main()

7 15

16 cout<<"

write finished.

"<17 system("

pause

");18

19 ifstream fileinput("

file.txt

");20

char buffer[100];

21while(fileinput.getline(buffer, 100))

22

25 }

檔案要包含fstream標頭檔案,也是在std命名空間中開始編寫程式。

然後是檔案的讀入:首先要定義乙個ofstream型別的物件,ofstream file(filename,開啟方式),其中的filename可以加上檔案的路徑。

用filename.is_open可以檢查是否開啟,用filename《同樣可以讀出檔案中的內容,定義ifstream型別的物件,用getline可以得到檔案中的一行資料。

最後需要注意的是,如果是double型別資料,用注意檔案中的空格

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 一般情況下就是指的顯示器...