我正在尝试使用下面的代码创建一个日志文件,但是它不起作用,我无法获取日志,因为文件未创建!
#include <iostream>
#include <fstream>
using namespace std;
ofstream myfile;
int main () {
myfile.open ("example.txt");
if (!myfile.is_open())
{
cerr << "Failed to create Log" << endl;
}
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}
答案 0 :(得分:0)
对我来说,它工作正常。在ubuntu上用g ++编译。
如果您使用的是linux,请尝试查找example.txt,因为工作目录可能不同。在Windows中,您可以在计算机中搜索该文件。
答案 1 :(得分:0)