gpt4 book ai didi

c# - Directory.CreateDirectory 对路径的访问被拒绝?

转载 作者:行者123 更新时间:2023-12-03 14:31:11 26 4
gpt4 key购买 nike

enter image description here

我有服务器-客户端应用程序,它是一个文件管理器
我的问题是当我进入需要访问控制的文件夹(如系统文件夹)时,它变为只读,但我需要移动/删除或创建新文件夹,我怎样才能获得这样做的权限?

这是我在服务器端创建新文件夹的方法

public void NewFolder(string path)
{
try
{
string name = @"\New Folder";
string current = name;
int i = 0;
while (Directory.Exists(path + current))
{
i++;
current = String.Format("{0} {1}", name, i);
}
Directory.CreateDirectory(path + current);
Explore(path); //this line is to refresh the items in the client side after creating the new folder
}
catch (Exception e)
{
sendInfo(e.Message, "error");
}
}

最佳答案

如果要删除目录只读属性,请使用以下命令:http://social.msdn.microsoft.com/Forums/en/vblanguage/thread/cb75ea00-f9c1-41e5-ac8e-296c302827a4

如果您想访问系统文件夹,您可以以本地管理员身份运行您的程序。

关于c# - Directory.CreateDirectory 对路径的访问被拒绝?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9444270/

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