从远程链接下载

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);
        }

 

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

尝试使用 Ajax 从远程服务器下载文件,但 Codeigniter 不起作用

git怎么从远程仓库拉取到本地

我无法从 firebase 获取下载网址()。请任何人帮助这是我的代码和错误。 (我正在使用片段)[重复]

16个必备的JavaScript代码片段

用于从 cloudkit 检索单列的代码模式/片段

尝试使用Ajax从远程服务器下载文件,而Codeigniter无法正常工作