使用函数执行dos命令system("copy onefile.txt otherDirectory");//将某一文件复制到另一目录system("type onefile.txt>otherfile.txt");//将一个文件的内容复制到另一个文件中,并覆盖另一文件的内容,前提是两个文件都必须存在;system("type onefile.txt>>otherfile.txt");//将一个文件的内容追加到另一个文件中,前提同上你也可以尝试使用c++执行批处理文件