我正在尝试使用CreateDirectory函数创建目录。但它似乎并没有像我期望的那样发挥作用。我的功能有什么问题?
#include "stdafx.h"
#include<windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
wchar_t *path = L"C:\\Users\TempFolder";
CreateDirectory ( path , NULL);
return 0;
}
答案 0 :(得分:2)
你需要另外一个反斜杠:
L"C:\\Users\\TempFolder"
并确保将您的程序(.exe)作为 admin 运行。您需要具有管理员权限才能在C:\ Users。
中创建文件夹