如何将文件打印到不同的文件夹

时间:2017-06-10 01:36:51

标签: c++ file directory

std::string file = "Cell.txt";
myfile.open (file);

在当前程序文件夹中生成一个文件。我不希望文件与编写它们的程序混合在一起。

std::string file = "Cell\\Cell.txt";

什么都不做

std::cout << file << '\n';

打印Cell \ Cell.txt

我甚至试过

std::string file = "\\Cell\\Cell.txt";

没想到这会起作用,但无论如何都试过了

std::string file = "\\\\Cell\\\\Cell.txt";

我以前做过,并且无法在网上提供任何帮助

0 个答案:

没有答案