将文件复制到另一个文件的C ++程序

时间:2016-08-03 16:30:55

标签: xcode7

我有以下代码部分。我正在使用XCode。我应该在哪里放置source.txt和target.txt以便可以访问?

std::ifstream fin("source.txt");
std::ofstream fout("target.txt");
fout<<fin.rdbuf(); //sends the text string to the file "target.txt"

system("pause"); 
return 0;

0 个答案:

没有答案