首先需要添加引用

using System.Security.AccessControl;

以下为具体代码,其中fileServerPath为需要判断的文件路径

 #region Authority judgment
            DirectorySecurity fileAcl = Directory.GetAccessControl(fileServerPath);
            var rules = fileAcl.GetAccessRules(true, true, typeof(System.Security.Principal.NTAccount)).OfType<FileSystemAccessRule>().ToList();
            var currentUser = Path.Combine(Environment.UserDomainName, Environment.UserName);
            bool permission = false;
            foreach (var rule in rules)
            {
                if (rule.IdentityReference.ToString() == currentUser) permission = true;
            }
            PublicMethod.OutputParameterWriteToLog(MethodBase.GetCurrentMethod().Name, string.Format("Current user [{0}] [{1}] access to file path [{2}]", currentUser, (permission ? "have" : "does not have"), fileServerPath));
#endregion
END
本文作者:
文章标题:关于对文件路径权限判断的记录
本文地址:https://blog.snwl0311.cn/index.php/archives/400/
版权说明:若无注明,本文皆薄·客原创,转载请保留文章出处。
Last modification:August 31, 2023
有钱的给钱,没钱的点赞哦,感谢哥哥姐姐厚爱!