下载文件到本地
Posted MR_CHW
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载文件到本地相关的知识,希望对你有一定的参考价值。
public void DownFile(string uRLAddress, string localPath, string filename) { WebClient client = new WebClient(); Stream str = client.OpenRead(uRLAddress); StreamReader reader = new StreamReader(str); byte[] mbyte = new byte[1000000]; int allmybyte = (int)mbyte.Length; int startmbyte = 0; while (allmybyte > 0) { int m = str.Read(mbyte, startmbyte, allmybyte); if (m == 0) { break; } startmbyte += m; allmybyte -= m; } reader.Dispose(); str.Dispose(); //string paths = localPath + System.IO.Path.GetFileName(uRLAddress); string path = localPath + filename; FileStream fstr = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write); fstr.Write(mbyte, 0, startmbyte); fstr.Flush(); fstr.Close(); }
以上是关于下载文件到本地的主要内容,如果未能解决你的问题,请参考以下文章