我一直在尝试通过教程网站学习 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");