zoukankan      html  css  js  c++  java
  • C# 设置文件夹的访问权限

    /// <summary>
            /// 设置文件夹的ACL
            /// </summary>
            /// <param name="folderPath">文件夹路径</param>
            /// <param name="userName">用户</param>
            /// <param name="rights">权限</param>
            /// <param name="allowOrDeny">拒绝访问</param>
            /// <returns></returns>
            public static bool SetFolderACL(
                string folderPath, 
                string userName, 
                FileSystemRights rights, 
                AccessControlType allowOrDeny)
            {
                //设定文件ACL继承
                InheritanceFlags inherits = InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit;
    
                return SetFolderACL(folderPath, userName, rights, allowOrDeny, inherits, PropagationFlags.None, AccessControlModification.Add);
    
            }
    
            /// <summary>
            /// 设置文件夹的ACL
            /// </summary>
            /// <param name="folderPath">文件夹路径</param>
            /// <param name="userName">用户</param>
            /// <param name="rights">权限</param>
            /// <param name="allowOrDeny">拒绝访问</param>
            /// <param name="inherits">ACL继承</param>
            /// <param name="propagateToChildren">应用于子文件夹及子文件</param>
            /// <param name="addResetOrRemove">修改类型</param>
            /// <returns></returns>
            public static bool SetFolderACL(
                string folderPath, 
                string userName, 
                FileSystemRights rights, 
                AccessControlType allowOrDeny, 
                InheritanceFlags inherits, 
                PropagationFlags propagateToChildren, 
                AccessControlModification addResetOrRemove)
            {
                bool result;
                //获取目录信息
                var folder = new DirectoryInfo(folderPath);
                //获取当前文件夹ACL
                var dSecurity = folder.GetAccessControl(AccessControlSections.All);
                //设置新的ACL规则
                var accRule = new FileSystemAccessRule(userName, rights, inherits, propagateToChildren, allowOrDeny); 
                //修改文件夹ACL
                dSecurity.ModifyAccessRule(addResetOrRemove, accRule, out result);
                //应用新的ACL规则到文件夹
                folder.SetAccessControl(dSecurity);
                //返回结果
                return result;
    
            }

    下面这样调用

            var folderPath = System.AppDomain.CurrentDomain.BaseDirectory;
            var userName = "Users";
            SetFolderACL(folderPath, userName, FileSystemRights.FullControl, AccessControlType.Allow);
  • 相关阅读:
    Jmeter_实现操作postgresql数据库
    测试人员如何使用Git部署测试环境
    GitLab简单使用
    ssh: Could not resolve hostname git.*****-inc.com : Temporary failure in name resolution fatal: The remote end hung up unexpectedly
    本地Linux服务器上配置Git
    SeleniumIDE_初识
    自动化测试_测试模型
    Top命令详解02
    【Linux性能调优一】观大局:系统平均负载load average
    【自动化专题】借助firefox插件定位web元素小技巧
  • 原文地址:https://www.cnblogs.com/yayaxxww/p/4243828.html
Copyright © 2011-2022 走看看