我只是想使用 copyfile 来复制文件,就这么简单,但它不起作用。我用谷歌搜索了它并查看了 20 个链接,它们都说“ object.CopyFile (source, destination[, overwrite])”
问题是我无法让它为我复制 txt 文件,我尝试以管理员身份运行它,但仍然无法正常工作。我还需要将源和目标作为 lpctstr (因为它不会在不使用多字节字符的情况下编译,并且除非我使用 Unicode 字符集,否则我的其他代码将无法工作)。
我的代码是
#include <iostream>
#include <Windows.h>
using namespace std;
int main()
{
CopyFile("C:\\Somefolder\\file.txt","C:\\folder\\file.txt",0);
return 0;
}
我正在运行 Windows 7,vc++ 2010,编译为调试,如果我错过了什么,对不起。