C # Set folder permissions (simple code)

Source: Internet
Author: User

The folder I want to test is as follows (first set the price to readonly,CodeModify it to readable ):

 

The Code is as follows:

 

Using system;

Using system. IO;

 

Namespace attri

{

Classprogram

{

 

Staticvoidmain (string [] ARGs)

{

String Path = @ "H: \ filetest \ file. js ";

Fileinfo Fi = newfileinfo (PATH );

Console. writeline ("the previous permission is:" + fi. attributes );

// Core code

Fi. Attributes = Fi. Attributes &~ Fileattributes. readonly;

 

Console. writeline ("the current permission is:" + fi. attributes );

}

}

}

 

The code works as follows:

 

It can be seen that the Code has changed the folder to readable, and the default permission of the file is archive.

Let's take a look at the interface. The File Permission is:

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.