码迷,mamicode.com
首页 > Windows程序 > 详细

C#修改文件夹权限

时间:2017-07-17 17:11:15      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:filesyste   controls   添加   container   tac   信息   its   false   directory   

/// <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);
}

C#修改文件夹权限

标签:filesyste   controls   添加   container   tac   信息   its   false   directory   

原文地址:http://www.cnblogs.com/xadmin/p/7196044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!