最佳答案
在我的应用程序中,我想把一个文件复制到另一个硬盘上,这就是我的代码:
#include <windows.h>
using namespace std;
int main(int argc, char* argv[] )
{
string Input = "C:\\Emploi NAm.docx";
string CopiedFile = "Emploi NAm.docx";
string OutputFolder = "D:\\test";
CopyFile(Input.c_str(), string(OutputFolder+CopiedFile).c_str(), TRUE);
return 0;
}
所以在执行这个命令之后,它在 D:
HDD 中向我显示了一个文件 testEmploi NAm.docx
但如果测试文件夹不存在,我想让他创建它。
我想在不使用 Boost 库的情况下做到这一点。