gpt4 book ai didi

c++ - CreateDirectory 函数不起作用

转载 作者:可可西里 更新时间:2023-11-01 11:50:01 25 4
gpt4 key购买 nike

我正在尝试使用 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;
}

最佳答案

你需要在那里有另一个反斜杠:

L"C:\\Users\\TempFolder"

还要确保以 admin 身份运行您的程序 (.exe)。您需要拥有管理员权限才能在 C:\Users 中创建文件夹。

关于c++ - CreateDirectory 函数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32180075/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com