本文介绍了使用C#使下载断点续传的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用这个方法( Web客户端
班)从互联网上下载一个文件:
I am using this method (WebClient
Class) for downloading a file from the Internet :
private Task DownloadUpdate(string url, string fileName)
{
var wc = new WebClient();
return wc.DownloadFileTaskAsync(new Uri(url), @"c:\download" + fileName);
}
如何让下载的可恢复的使用上面的code?
How can I make the download resumable using the above code?
推荐答案
从HttpWebRequest或WebRequest的 - 简历下载ASP.NET :
恢复文件是通过指定该文件的字节范围做你
想使用Range HTTP标头进行下载。这是可以做到
与功能。
例如:
request.AddRange(1000);
这篇关于使用C#使下载断点续传的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!