0
private bool GrantAccess(string fullPath)
{
DirectoryInfo dInfo = new DirectoryInfo(fullPath);
DirectorySecurity dSecurity = dInfo.GetAccessControl();
dSecurity.AddAccessRule(new FileSystemAccessRule(new SecurityIdentifier(WellKnownSidType.WorldSid, null), FileSystemRights.FullControl, InheritanceFlags.ObjectInherit | InheritanceFlags.ContainerInherit, PropagationFlags.NoPropagateInherit, AccessControlType.Allow));
dInfo.SetAccessControl(dSecurity);
return true;
}
我正在使用這種方法刪除被拒絕的權限,但它不能正常工作,請幫助解決此問題。我如何刪除拒絕文件夾的權限?
你應該運行你的應用程序作爲管理員!如果您正在調試,只需以管理員身份運行Visual Studio。 –