david
david

Reputation: 367

Progress bar and webclient

I have an event that takes about 10-30 seconds, namely downloading information from a page (with quite a lot of traffic), modifying it and then saving it somewhere onto the disk using WebClient. Because it takes such a long time, I want to add a progress bar or make an update label (which says something like updating..) to indicate the progress.

Can someone guide me as to how I would do this? Is there any event in the WebClient I can use to handle this?

Upvotes: 5

Views: 30786

Answers (2)

Andrea
Andrea

Reputation: 123

just add -Priority Foregroud to use Bitstransfer with max bandwidth available!

Start-BitsTransfer -Source 'https://example.com/myfile.zip' -Destination 'C:\myfolder\myfile.zip' -Priority Foreground -Description 'Dowloading myfile'

Upvotes: -1

Bradley Grainger
Bradley Grainger

Reputation: 28162

If you're writing a Windows Forms client application (not a ASP.NET server-side component), showing the progress of a WebClient download can be done as follows:

WebClient webClient = new WebClient();
webClient.DownloadProgressChanged += (s, e) =>
{
    progressBar.Value = e.ProgressPercentage;
};
webClient.DownloadFileCompleted += (s, e) =>
{
    progressBar.Visible = false;
    // any other code to process the file
};
webClient.DownloadFileAsync(new Uri("http://example.com/largefile.dat"),
    @"C:\Path\To\Output.dat");

(progressBar is the ID of a ProgressBar object on your form.)

Upvotes: 32

Related Questions