代码之家  ›  专栏  ›  技术社区  ›  raphnguyen

fstream不会创建文件[重复]

  •  28
  • raphnguyen  · 技术社区  · 11 年前

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

    3 回复  |  直到 11 年前
        1
  •  27
  •   haitaka    11 年前

    您应该添加fstream::out来打开方法,如下所示:

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

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

        2
  •  17
  •   ceruleus    11 年前

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

    fstream file("test.txt", fstream::in | fstream::out | fstream::trunc);
    
        3
  •  3
  •   Ritesh Kumar Gupta    11 年前

    这样做可以:

    #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();
    }