make download resumable using c#

2019-05-03 13:43发布

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);
}

How can I make the download resumable using the above code?

1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-05-03 14:24

From HttpWebRequest or WebRequest - Resume Download ASP.NET:

Resuming files is done by specifying the byte range of the file you would like to download using the Range HTTP header. This can be done in .NET with the HttpWebRequest.AddRange function.

For example:

request.AddRange(1000); 
查看更多
登录 后发表回答