去掉只读属性
做一个导入数据的程序,首先将数据文件压缩成一个压缩包,上传的服务器后解压,导入成功后将上传文件删除,结果出现了,文件不可访问的错误,百度一下才知道是文件权限问题
用程序去除文件夹的只读属性: System.IO.DirectoryInfo DirInfo = new DirectoryInfo(“filepath”);
DirInfo.Attributes = FileAttributes.Normal & FileAttributes.Directory;
去除文件的只读属性: System.IO.File.SetAttributes("filepath", System.IO.FileAttributes.Normal);