C#保存远程文件到本地-创新互联
///创新互联主营南岸网站建设的网络公司,主营网站建设方案,成都App制作,南岸h5微信小程序搭建,南岸网站营销推广欢迎南岸等地区企业咨询/// 保存远程文件到本地 /// /// 远程文件URL /// 保存的本地路径 ///public bool DownloadFile(string url, string file) { try { (new System.Net.WebClient()).DownloadFile(url,file); return true; } catch { } return false; } public void Download(string strURL,string strName) { string strRootDir = "D:\\DownLoadRecode"; if (!Directory.Exists(strRootDir)) { Directory.CreateDirectory(strRootDir); } WebClient client = new WebClient(); string strFileName = string.Empty; string strFileDir = string.Empty; string strSavePath = string.Empty; string[] arrName = strName.Split('/'); if (arrName != null && arrName.Length > 1) { strFileDir = arrName[0]; strFileName = arrName[1]; strSavePath = strRootDir + "\\" + strFileDir; if (!Directory.Exists(strSavePath)) { Directory.CreateDirectory(strSavePath); } } else { strFileName = strName; strSavePath = strRootDir + "\\Temp"; if (!Directory.Exists(strSavePath)) { Directory.CreateDirectory(strSavePath); } } strSavePath += "\\" + strFileName; if (!File.Exists(strSavePath)) { client.DownloadFile(strURL, strSavePath); } FileInfo xFileInfo = new FileInfo(strSavePath); Response.Clear(); //清除缓冲区流中的所有内容输出 Response.ClearHeaders(); //清除缓冲区中的所有头 Response.Buffer = false; //设置缓冲输出为 false //设置输出流的 HTTP MIME 类型为 application/octet-stream Response.ContentType = "audio/x-wav"; Response.Charset = "GB2312"; Response.ContentEncoding = Encoding.UTF8; //将 HTTP 头添加到输出流 Response.AppendHeader("Content-Disposition", "p_w_upload;filename=" + HttpUtility.UrlEncode(strFileName)); Response.AppendHeader("Content-Length", xFileInfo.Length.ToString()); //将指定的字符直接写入HTTP内容输出流 Response.WriteFile(strSavePath); Response.Flush(); Response.End(); }
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:C#保存远程文件到本地-创新互联
当前链接:http://myzitong.com/article/hdsih.html