码迷,mamicode.com
首页 > 其他好文 > 详细

下载指定路径的文件到本地服务器

时间:2019-01-12 21:45:56      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:nis   cep   read   cat   buffer   保存文件   user   本地服务器   本地   

private string SaveFileToLocal(string url)
        {
            FileStream os = null;
            FileStream ns = null;
            try
            {
                string savePath = @"C:\Users\Administrator\MyCopy";
                if (!Directory.Exists(savePath))
                    Directory.CreateDirectory(savePath);
                string fileName = Path.GetFileName(url);
                string fileFullPath = Path.Combine(savePath, fileName);
                os = new FileStream(url, FileMode.Open);

                ns = new FileStream(fileFullPath, FileMode.OpenOrCreate);
                byte[] tempBuffer = new byte[4096];
                int bytesRead = 0;
                do
                {
                    bytesRead = os.Read(tempBuffer, 0, tempBuffer.Length);
                    ns.Write(tempBuffer, 0, bytesRead);

                } while (bytesRead > 0);
                return fileFullPath;
                
            }
            catch (Exception e)
            {
                throw new Exception("保存文件出错,原因:"+e.Message);
            }
            finally
            {
                ns.Close();
                os.Close();
            }
        }

 

下载指定路径的文件到本地服务器

标签:nis   cep   read   cat   buffer   保存文件   user   本地服务器   本地   

原文地址:https://www.cnblogs.com/zhengwei-cq/p/10260997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!