我有一个尝试移动文件的小应用程序。
这是最小代码:
#include <windows.h>
int main()
{
MoveFile("C:\\test.txt", "C:\\folder\\test.txt");
// Here I use GetLastError() to get last error code witch is 2 and I can't find what mean;
return 0;
}
重要提示:此错误出现在 Windows 7 上,但在 win XP 上有效,文件被移动!