天天看点

c++ ofstream 文件不存在_C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?...

C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?

來源:互聯網  2010-09-02 09:43:54  評論

分類: 電腦/網絡 >> 程序設計 >> 其他編程語言

問題描述:

C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?

參考答案:

”文件”中如果没有指定路径,则在该可执行文件相同的文件夹下,如果指定路径则在该路径下,如:

ofstream ofile("output.dat");

ofstream ofile("c:\\temp\\output.dat");

如果文件不存在,则一般新建一个文件。打开方式,如按二进制打开

ofstream ofile("output.dat", ios_base::binary);

如果追加方式打开,则:

ofstream ofile("output.dat", ios_base::app);

注意:ofstream 流在打开方式中已经默认了ios_base::out,故这个参数一般不必重复使用,如:

ofstream ofile("output.dat", ios_base::out);

早期的C++语言使用ios代替ios_base

[b]分类:[/b] 电脑/网络 >> 程序设计 >> 其他编程语言[br][b]问题描述:[/b][br]C++:ofstream ofile("文件",打开方式),这个”文件”是保存在哪呢,该文件不存在,会自动新建一个文件?[br][b]参考答案:[/b][br]”文件”中如果没有指定路径,则在该可执行文件相同的文件夹下,如果指定路径则在该路径下,如:

ofstream ofile("output.dat");

ofstream ofile("c:\\temp\\output.dat");

如果文件不存在,则一般新建一个文件。打开方式,如按二进制打开

ofstream ofile("output.dat", ios_base::binary);

如果追加方式打开,则:

ofstream ofile("output.dat", ios_base::app);

注意:ofstream 流在打开方式中已经默认了ios_base::out,故这个参数一般不必重复使用,如:

ofstream ofile("output.dat", ios_base::out);

早期的C++语言使用ios代替ios_base