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

来源:互联网 发布:铺路爪 知乎 编辑:程序博客网 时间:2024/05/29 17:31

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

    }

原创粉丝点击