0

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

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)
4

1 回答 1

1

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

于 2012-08-02T08:27:42.733 回答