如何删除只读文件?
参考:
System.IO.FileInfo fi = new System.IO.FileInfo("filename");
// remove readonly attribute
if ((fi.Attributes & System.IO.FileAttributes.ReadOnly) != 0)
fi.Attributes -= System.IO.FileAttributes.ReadOnly;
System.IO.File.Delete("filename");
http://msdn.microsoft.com/zh-cn/library/aa497275.aspx
使用 System.IO.FileInfo 类来访问文件属性。
System.IO.FileInfo fi = new System.IO.FileInfo("filename");
// remove readonly attribute
if ((fi.Attributes & System.IO.FileAttributes.ReadOnly) != 0)
fi.Attributes -= System.IO.FileAttributes.ReadOnly;
System.IO.File.Delete("filename");
--------------------------------------------------
李森 – listen |
声明: Announce: |
posted on 2009-09-22 18:09 listenlisten 阅读(1481) 评论(3) 编辑 收藏 举报