从远程链接下载

Posted hope

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从远程链接下载相关的知识,希望对你有一定的参考价值。

     /// <summary>
        /// 从外部链接下载附件
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public ActionResult DownloadFromExternalLink(string url)
        {
            //string uploadPath = System.Configuration.ConfigurationManager.AppSettings["BPMAttachments"];
            //string dirRelativePath = "externalLinks";
            //string dirAbsolutePath = uploadPath + dirRelativePath;
            string fileName = Path.GetFileName(url);
            WebClient client = new WebClient();
            //client.DownloadFile(url, dirAbsolutePath + fileName);
            var fileData = client.DownloadData(url);
            var contentType = MimeMapping.GetMimeMapping(fileName);
            HttpContext.Response.AddHeader("content-disposition", "inline;filename=" + fileName);
            return File(fileData, contentType);
        }

 

以上是关于从远程链接下载的主要内容,如果未能解决你的问题,请参考以下文章