我查了论坛,但我发现这样:
ofstream outfile;
outfile.open ("test.txt");
outfile.open ("\\data\\test.txt");
但我想在同一级目录中打开一个文件。我怎么能这样做?
我的C ++ exe文件在发布目录中,我需要在日志目录中打开一个文件。
root
-somefolder
--release
--test
--log
这没效果:
outfile.open(".\\log\\test.txt",ios::app)
答案 0 :(得分:1)
尝试outfile.open("..\\log\\test.txt",ios::app)