/// <summary>
/// 删除文件--传入文件地址(注意首先转换虚拟目录为实际目录,使用Server.MapPath(cfile))
/// </summary>
/// <param name="strDate"></param>
/// <returns></returns>
public static bool DelFile(string cfile)
{
try
{
if (!cfile.Equals(""))
{
//如果有则删除
FileInfo fi = new FileInfo(cfile);
//判断文件属性是否只读?是则修改为一般属性再删除
if (fi.Attributes.ToString().IndexOf("ReadOnly") != -1)
{
fi.Attributes = FileAttributes.Normal;
}
System.IO.File.Delete(cfile);
return true;
}
else
{
return true;
}
}
catch (Exception err)
{
PublicMethod.ExceptionCommit(1, "删除文件引发的错误:" + err.ToString());
return false;
C#删除只读文件
最新推荐文章于 2023-07-20 23:27:48 发布