C 讀寫檔案要點總結

2021-10-09 20:23:05 字數 648 閱讀 4603

1)匯入標頭檔案fstreamstring;

2)建立檔案流file,輸入使用ifstream型別,輸出使用ofstream型別;

3)呼叫file.open(),開啟檔案;

4)使用getline(),逐行讀取輸入檔案中的字元;

5)使用「<<操作符將字串寫入到檔案流中;

6)呼叫file.close(),關閉檔案。

void open(const char* _filename, ios_base::openmode _mode = ios_base::out, int _prot = ios_base::_default_open_prot) ;

// _prot is an extension

void getline(std::istream &_istr ,std::string &str) ;
將istr輸入流中的一行字元讀取到str中,連續呼叫會逐行讀取。

C 檔案讀寫總結

在c 中如何實現檔案的讀寫?先看簡單的c 源程式 fout 我是it小小鳥 fout.close string filename1 ofstream fout filename1.c str fout 我是it小小鳥 fout.close ofstream fout first.txt fout 我...

C 讀寫檔案總結

c 建立目錄 建立目錄c sixage directoryinfod directory.createdirectory c sixage d1指向c sixage sixage1 directoryinfod1 d.createsubdirectory sixage1 d2指向c sixage s...

C檔案讀寫總結

4.隨機讀寫檔案 方式含義 r 開啟已存在的文字檔案,唯讀 w 開啟 建立文字檔案,指標指到頭,只寫 a 開啟,指向檔案尾,在已存在文字檔案中追加 wb 開啟乙個二進位制檔案,只寫 ab 開啟乙個二進位制檔案,指向檔案尾進行追加 r 以讀 寫方式開啟乙個已存在的檔案 w 以讀 寫方式建立乙個新的文字...