c#(asp.net)实现的文件下载函数

发布时间:2020-03-04编辑:脚本学堂
由c#实现的一个可以实现文件下载的函数,很简单,有用到的朋友,参考下吧。

完整代码如下。

复制代码 代码示例:

//文件下载函数
public static bool DownFile(string filePath)
{
        try
        {
            if (File.Exists(filePath))
            {
                HttpContext.Current.Response.Clear();
                HttpContext.Current.Response.AddHeader("content-disposition", "attachment; filename=" + filePath);
                HttpContext.Current.Response.ContentType = "application/octet-stream";
                HttpContext.Current.Response.WriteFile(filePath);
                HttpContext.Current.Response.Flush();
                HttpContext.Current.Response.Close();
                HttpContext.Current.Response.End();
                return true;
            }
            else
            {
                return false;
            }
        }
        catch
        {
            return false;
        }
}