本文介绍了取下目录只读属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何编程取消C#从目录中的只读属性?

解决方案

  VAR迪=新的DirectoryInfo(SomeFolder);
di.Attributes和放大器; =〜FileAttributes.ReadOnly;
 

How can I programatically remove the readonly attribute from a directory in C#?

解决方案
var di = new DirectoryInfo("SomeFolder");
di.Attributes &= ~FileAttributes.ReadOnly;

这篇关于取下目录只读属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-30 06:22
查看更多