C # Modify the permissions for a file or folder, and introduce specific code that adds full control permissions for the specified user and user group

Source: Internet
Author: User
C # Modify the permissions for a file or folder, and introduce specific code that adds full control permissions for the specified user and user group

//Add the Full Control permission for the "everyone,users" user group to the Excel file 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);  Add Full Control permissions for the "everyone,users" user group to the directory where the Excel files are located 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); 
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.