0

我需要检查某个路径的读/写权限。但最大的问题是,我不想检查我自己的,而是想为其他用户检查它们

这将检查运行程序的用户。

System.Security.Principal.NTAccount

例如,我如何检查用户“OTHERUSER”?

到目前为止,这是我的代码。

   private Boolean CheckZugriff(string str_projektpfad)
    {
        str_projektpfad = Path.GetDirectoryName(str_projektpfad);
        bool isWriteAccess = false;
        try
        {
            AuthorizationRuleCollection collection = Directory.GetAccessControl(str_projektpfad).GetAccessRules(true, true, typeof(System.Security.Principal.NTAccount));
            foreach (FileSystemAccessRule rule in collection)
            {
                if (rule.AccessControlType == AccessControlType.Allow)
                {
                    isWriteAccess = true;
                    break;
                }
            }
        }
        catch (UnauthorizedAccessException ex)
        {
            isWriteAccess = false;
        }
        catch (Exception ex)
        {
            isWriteAccess = false;

        }
        if (!isWriteAccess)
        {
            //handle notifications                 
        }

        return isWriteAccess;
    }
4

1 回答 1

1

找到两件事可能对你有帮助...

1)此代码检查为所有用户为文件夹设置的权限:

    string directory = "your path";

    DirectoryInfo di = new DirectoryInfo(directory);

    DirectorySecurity ds = di.GetAccessControl();

2)此代码检查您的用户是否具有管理员权限:

bool isElevated;
WindowsIdentity identity = new WindowsIdentity("user principal name goes here");
WindowsPrincipal principal = new WindowsPrincipal(identity);
isElevated = principal.IsInRole(WindowsBuiltInRole.Administrator);

如果用户不是管理员并且没有为他设置规则,这是合乎逻辑的 - 他无法访问该文件夹。不确定它是否能解决您的问题,但希望对您有所帮助。

于 2015-06-23T13:30:29.353 回答