[C#] 纯文本查看 复制代码 string path = "d:\\sufeinet.com";
//判断是不是只读文件
if (File.GetAttributes(path) == FileAttributes.Hidden || File.GetAttributes(path) == FileAttributes.ReadOnly)
{
//设置为非只读文件
System.IO.DirectoryInfo dif = new DirectoryInfo(path);
dif.Attributes = FileAttributes.Archive;
}
其实不用我多说大家看上面方法就知道了,当然如果想设置为只读文件可以这样做
[C#] 纯文本查看 复制代码 string path = "d:\\sufeinet.com";
//设置只读文件
System.IO.DirectoryInfo dif = new DirectoryInfo(path);
dif.Attributes = FileAttributes.ReadOnly;
方法很简单大家试试吧。
这个主要是用于一些文件是只读的,我们可以先给他设置为非只读文件,等访问之后再设置为只读文件
|