26

如果它不存在,我只是试图创建一个文本文件,我似乎无法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,因为那会期望已经存在的文件存在,但我不确定是否需要为尚不存在的文件指定其他参数。

4

3 回答 3

26

您应该将 fstream::out 添加到 open 方法,如下所示:

file.open("test.txt",fstream::out);

有关 fstream 标志的更多信息,请查看此链接:http ://www.cplusplus.com/reference/fstream/fstream/open/

于 2013-03-27T19:22:05.413 回答
16

您需要添加一些参数。此外,实例化和打开可以放在一行中:

fstream file("test.txt", fstream::in | fstream::out | fstream::trunc);
于 2013-03-27T19:19:59.920 回答
3

这将做:

#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();
}
于 2013-03-27T19:24:56.860 回答