现在的位置: 首页 > 综合 > 正文

asp.net删除文件文件或图片

2014年01月03日 ⁄ 综合 ⁄ 共 217字 ⁄ 字号 评论关闭

  public static bool FileDelete(string path)
    {
       
        System.IO.FileInfo file = new System.IO.FileInfo(path);
        if (file.Exists)
        {
            file.Delete();
           return true;
        }
        return false;

    }

抱歉!评论已关闭.