我只想写一个日志文件(追加)。我在这里查了一下:
http://www.cplusplus.com/reference/iostream/fstream/open/
所以这就是我所做的
#include <fstream>
fstream outfile;
//outfile.open("/tmp/debug.txt" ); // works, simply for writing
outfile.open("/tmp/debug.txt", fstream::app ); // does nothing
outfile << "START" << endl;
outfile.close();
答案 0 :(得分:29)
fstream::app|fstream::out
代替fstream::app
。如果没有指定app
,out
就没有意义(人们可能会认为它应该隐含out
,但事实并非如此)。