取消文件夹下的子文件夹和文件的只读属性

Posted Ace007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了取消文件夹下的子文件夹和文件的只读属性相关的知识,希望对你有一定的参考价值。

private void UnsetReadOnly(string dirPath)
{//http://bbs.csdn.net/topics/380233913
string[] dirPathes = Directory.GetDirectories(dirPath, "*.*", SearchOption.AllDirectories);
string[] filePathes = Directory.GetFiles(dirPath, "*.*", SearchOption.AllDirectories);
foreach (var dp in dirPathes)
{
DirectoryInfo dir = new DirectoryInfo(dirPath);
dir.Attributes = FileAttributes.Normal & FileAttributes.Directory;
}
foreach (var fp in filePathes)
{
File.SetAttributes(fp, System.IO.FileAttributes.Normal);
}
}

 

用ICSharpZipLib解压,如果目标文件夹里的文件为只读属性会导致解压失败:UnauthorizedAccessException: Access to the path is denied.

使用如上代码取消文件的只读属性后解决.(只设置文件夹的Attributes为非只读没作用,里面的文件还是只读)

以上是关于取消文件夹下的子文件夹和文件的只读属性的主要内容,如果未能解决你的问题,请参考以下文章

win7:文件夹只读属性无法取消

只读文件夹怎么删除

win7 文件夹为啥只读属性不能更改

Java如何设置文件为只读

为啥文件夹都是只读文件?而且改不了?

win7系统无法修改文件夹的只读属性怎么办