c 檔案讀寫

2021-09-06 05:26:08 字數 1023 閱讀 9416

新增#include

using namespace std;

ofstream myfile("c:\\1.txt",ios::out|ios::trunc);2//

3//myfile<

myfile.close();

56     ifstream mfile1;

7     mfile1.open(

"c:\\1.txt

",ios::

in);

8if(!mfile1)

9else

10     

18         mfile1.close();

19         cout <

20     }

c++檔案流:

fstream  // 檔案流

ifstream  // 輸入檔案流

ofstream  // 輸出檔案流

//建立乙個文字檔案並寫入資訊

//同向螢幕上輸出資訊一樣將資訊輸出至檔案

#include

#include

void main()

char c;

while((c=fin.get())!=eof)cout<

void main()

char c[80];

while(fin.get(c,80,'\0')!=null)cout<

void main()

char c[80];

while(!fin.eof())            //判斷檔案是否讀結束

fin.close(); }

拷貝檔案

//二進位制檔案操作示例

#include

void main()

ofstream fout("c:\\2.exe",ios::binary);

char c[1024];

while(!fin.eof())

fin.close();

fout.close();

cout<

c 檔案讀寫 文字讀寫

include int main else return 0 格式 intfscanf file stream,constchar format,返回值 如果成功,該函式返回成功匹配和賦值的個數。如果到達檔案末尾或發生讀錯誤,則返回 eof 引數1 file stream 檔案指標 引數2 cons...

C 檔案讀寫

原文 http www.vckbase.com document viewdoc id 1439 原作 john peregrine file i o using c 序論 我曾發表過檔案輸入輸出的文章,現在覺得有必要再寫一點。檔案 i o 在c 中比烤蛋糕簡單多了。在這篇文章裡,我會詳細解釋asc...

C 讀寫檔案

1 使用filestream讀寫檔案 檔案頭 using system using system.collections.generic using system.text using system.io 讀檔案核心 byte bydata new byte 100 char chardata ne...