ログファイルに書き込み(追加)したいだけです。私はここでそれを調べました:
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();
fstream::app|fstream::out
の代わりに fstream::app
。 app
は、out
を指定しないと意味がありません(out
を暗示する必要があると思われるかもしれませんが、そうではありません)。