本文介绍了无法从网络下载整个文件的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好!

我在使用WebClient.DownloadFile命令时遇到问题.它可以处理较小的文件,但是当我尝试使用它下载约300MB的文件时,它并不会下载整个文件.

这是我到目前为止的内容:

Hi everyone!

I am running into an issue with using the WebClient.DownloadFile command. It works with small files, but when I try to use it to download ~300MB file, it doesn''t download the entire file.

Here is what I have so far:

WebClient webClient = new WebClient();
                webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
                webClient.DownloadFileAsync(new Uri(@"https://mysite/waveform_db.sdf"), @"c:\db.sdf");


推荐答案


这篇关于无法从网络下载整个文件的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 21:35