我只是想创建一个文本文件,如果它不存在,我似乎无法让fstream
这样做。
#include <fstream>
using std::fstream;
int main(int argc, char *argv[]) {
fstream file;
file.open("test.txt");
file << "test";
file.close();
}
我是否需要在open()
函数中指定任何内容才能让它创建文件?我已经读过你不能指定ios::in
,因为它会期望已有的文件存在,但我不确定是否需要为一个尚不存在的文件指定其他参数。
答案 0 :(得分:17)
你应该将fstream :: out添加到这样的open方法中:
file.open("test.txt",fstream::out);
有关fstream标志的更多信息,请查看此链接:http://www.cplusplus.com/reference/fstream/fstream/open/
答案 1 :(得分:11)
您需要添加一些参数。实例化和开放可以放在一行:
fstream file("test.txt", fstream::in | fstream::out | fstream::trunc);
答案 2 :(得分:2)
这样做:
#include <fstream>
#include <iostream>
using std::fstream;
int main(int argc, char *argv[]) {
fstream file;
file.open("test.txt",std::ios::out);
file << fflush;
file.close();
}