• 转载:C# 设置文件夹权限(代码简单)


    我要测试的文件夹如下(首先设置问价的权限为ReadOnly 只读,代码将修改其为可读):

    代码如下:

    using System;

    using System.IO;

    namespace Attri

    {

        classProgram

        {

            staticvoidMain(string[] args)

            {

                string path = @"H:\FileTest\file.js";

                FileInfo fi = newFileInfo(path);

                Console.WriteLine("之前的权限是:" + fi.Attributes);

                //核心代码

                fi.Attributes = fi.Attributes & ~FileAttributes.ReadOnly;

                Console.WriteLine("现在的权限是:" + fi.Attributes);

            }

        }

    }

    代码效果如下:

    可以看出代码已经修改了文件夹为可读,文件的默认权限是存档

    再看看从界面上,文件的权限是:

    ‍‍



  • 相关阅读:
    sql server紧急状态下登录脚本
    将SQL for xml path('')中转义的字符正常显示
    SQL查询表中的有那些索引
    Set ARITHABORT Option设置为ON
    检测重编译
    计划指南
    sql server 清理缓存
    变量绑定
    分析及动态采样
    Hint
  • 原文地址:https://www.cnblogs.com/shenchao/p/2944639.html
Copyright © 2020-2023  润新知