C 修改文件或文件夹的权限,为指定用户 用户组添加完全控制权限

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

C#修改文件或文件夹的权限,为指定用户、用户组添加完全控制权限

            //给Excel文件添加"Everyone,Users"用户组的完全控制权限            FileInfo fi = new FileInfo(excelPath);            System.Security.AccessControl.FileSecurity fileSecurity = fi.GetAccessControl();            fileSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));            fileSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));            fi.SetAccessControl(fileSecurity);            //给Excel文件所在目录添加"Everyone,Users"用户组的完全控制权限            DirectoryInfo di = new DirectoryInfo(Path.GetDirectoryName(excelPath));            System.Security.AccessControl.DirectorySecurity dirSecurity = di.GetAccessControl();            dirSecurity.AddAccessRule(new FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Allow));            dirSecurity.AddAccessRule(new FileSystemAccessRule("Users", FileSystemRights.FullControl, AccessControlType.Allow));            di.SetAccessControl(dirSecurity);


           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

C 修改文件或文件夹的权限,为指定用户 用户组添加完全控制权限_第1张图片

你可能感兴趣的:(C 修改文件或文件夹的权限,为指定用户 用户组添加完全控制权限)