我编写了一个调用该方法的程序(在 Windows 7 上)DirectoryInfo.GetFiles()
,并且在“文档和设置”文件夹中,我有 UnauthorizedAccess 的例外。
我尝试了很多解决方案,例如:
创建一个清单
`<requestedExecutionLevel level="highestAvailable" uiAccess="false" />`
and also with this
DirectorySecurity dSecurity = Directory.GetAccessControl(dir.FullName);
dSecurity.AddAccessRule(new FileSystemAccessRule("Luca", FileSystemRights.FullControl, AccessControlType.Allow));
Directory.SetAccessControl(dir.FullName, dSecurity);
可能是什么问题?