在C ++中的同一级目录中的文件流

时间:2012-08-02 08:23:48

标签: c++ windows ofstream

我查了论坛,但我发现这样:

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)

1 个答案:

答案 0 :(得分:1)

尝试outfile.open("..\\log\\test.txt",ios::app)