1

我一直在尝试通过教程网站学习 C++ 中的文件 IO,并遇到了以下代码。

现在,如何指定输出文件的位置?我试过运行代码并搜索文件的位置,但没有用。

谢谢你。

ofstream myfile ("InOutExample.txt");
if (myfile.is_open())
{
    myfile << "This is a line.\n";
    myfile << "This is another line.\n";
    myfile.close();
}
else cout << "Unable to open file";
return 0;


system("pause");
4

1 回答 1

1

如果您指定位置,它将把它放在那里。

ofstream myfile ("c:\\temp\\InOutExample.txt");

如果您没有放置完整路径,它会将其放在当前工作目录中。

于 2013-03-20T15:31:37.660 回答