/// <summary>
/// 删除指定位置的图片和文件
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
protected static bool FilePicDelete(string path)
{
bool ret = false;
System.IO.FileInfo file = new System.IO.FileInfo(path);
if (file.Exists)
{
file.Delete();
ret = true;
}
return ret;
}
时间: 2024-10-10 10:17:43