zoukankan      html  css  js  c++  java
  • C#修改文件夹权限

    /// <summary>
    ///为文件夹添加users,everyone用户组的完全控制权限
    /// </summary>
    /// <param name="dirPath"></param>
    static void AddSecurityControll2Folder(string dirPath)
    {
        //获取文件夹信息
        DirectoryInfo dir = new DirectoryInfo(dirPath);
        //获得该文件夹的所有访问权限
        System.Security.AccessControl.DirectorySecurity dirSecurity = dir.GetAccessControl(AccessControlSections.All);
        //设定文件ACL继承
        InheritanceFlags inherits = InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit;
        //添加ereryone用户组的访问权限规则 完全控制权限
        FileSystemAccessRule everyoneFileSystemAccessRule = new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, inherits, PropagationFlags.None, AccessControlType.Allow);
        //添加Users用户组的访问权限规则 完全控制权限
        FileSystemAccessRule usersFileSystemAccessRule = new FileSystemAccessRule("Users", FileSystemRights.FullControl, inherits, PropagationFlags.None, AccessControlType.Allow);
        bool isModified = false;
        dirSecurity.ModifyAccessRule(AccessControlModification.Add, everyoneFileSystemAccessRule, out isModified);dirSecurity.ModifyAccessRule(AccessControlModification.Add, usersFileSystemAccessRule, out isModified);
        //设置访问权限
        dir.SetAccessControl(dirSecurity);
    }

  • 相关阅读:
    01 Windows编程——Hello World
    图像处理基础知识
    集成IDE anaconda
    Python中的正则表达式
    Introduction of Machine Learning
    Linux命令——diff、patch
    sed & awk 概述
    Linux行编辑器——ed
    Linux命令——w、who、whoami、lastlog、last
    【问题】统计系统上有多少个用户
  • 原文地址:https://www.cnblogs.com/xadmin/p/7196044.html
Copyright © 2011-2022 走看看