用C ++写文件

时间:2018-03-03 16:29:19

标签: c++ file

我试图写一个文件,但它没有用。这是我的示例代码。

ofstream file ("file.txt");

if (file.is_open()){
    file << "Write 1 line.\n";
    file << "Write 2 line.\n";
    file.close();
    cout << "Successfull" << endl;
}
else cout << "Unable to open file";

我正在进行fstream导入并将txt文件创建到main.cpp文件夹中。

1 个答案:

答案 0 :(得分:0)

好吧,我发现了问题,XCODE在这里创建文件:

/用户/ [名称] /资源库/开发商/ Xcode中/ DerivedData / [项目] /生成/产品/调试