gpt4 book ai didi

C#:访问路径 <'filepath' > 被拒绝

转载 作者:行者123 更新时间:2023-11-30 22:31:27 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Why am I getting an access denied error for the Documents and Settings folder?

我有一个程序可以从用户指定的文件夹及其子目录中读取所有 .exe 文件。在测试时,我尝试使用 C:\作为 root 进行扫描。

这抛出一个“UnauthorizedAccessException 未处理”{“访问路径 'c:\Documents and Settings\' 被拒绝。”}

执行此操作的代码片段如下:

 string customScanFolder = Console.ReadLine();
Console.WriteLine("");

if (Directory.Exists(customScanFolder) == true)
{
string[] customScanResults = Directory.GetFiles(customScanFolder, "*.EXE", SearchOption.AllDirectories);

我仍然是一个 C# 新手,但是这里的所有谷歌搜索和相关主题都没有帮助我指明正确的方向。

我的程序运行的系统是禁用了 UAC 的 Win7。 .exe 启用了“以管理员身份运行”。

该程序只会从文件中读取,而不会写入文件。我需要做什么才能授予访问权限或以其他方式避免此错误?

谢谢,

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