C# - Wait for Multiple File Downloads to CompleteHow do I calculate someone's age in C#?What is the difference between String and string in C#?Hidden Features of C#?Cast int to enum in C#How do you give a C# Auto-Property a default value?How do I enumerate an enum in C#?Catch multiple exceptions at once?How to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?What are the correct version numbers for C#?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?
Why did the Apple IIe make a hideous noise if you inserted the disk upside down?
How do I debug a dependency package? If I have its source code
What would you need merely the term "collection" for pitches, but not "scale"?
Is it possible to alias a column based on the result of a select+where?
Move up, right, left and down functions
How do I present a future free of gender stereotypes without being jarring or overpowering the narrative?
A quine of sorts
Russian equivalents of 能骗就骗 (if you can cheat, then cheat)
Could you fall off a planet if it was being accelerated by engines?
Are you required to spend hit dice to take a short rest?
Why do movie directors use brown tint on Mexico cities?
English idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)
Robots in a spaceship
Rear derailleur got caught in the spokes, what could be a root cause
Checkmate in 1 on a Tangled Board
What was the first science fiction or fantasy multiple choice book?
How many transistors are there in a logic gate?
Active wildlife outside the window- Good or Bad for Cat psychology?
Having to constantly redo everything because I don't know how to do it
Installed software from source, how to say yum not to install it from package?
What is this fluorinated organic substance?
Chandra exiles a card, I play it, it gets exiled again
How to track mail undetectably?
Two palindromes are not enough
C# - Wait for Multiple File Downloads to Complete
How do I calculate someone's age in C#?What is the difference between String and string in C#?Hidden Features of C#?Cast int to enum in C#How do you give a C# Auto-Property a default value?How do I enumerate an enum in C#?Catch multiple exceptions at once?How to create Excel (.XLS and .XLSX) file in C# without installing Ms Office?What are the correct version numbers for C#?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?
I have an app written in C#. In this app, I need to download multiple files. Once all of the files are downloaded, I need to do something else. In an effort to download the files at the same time, I've written the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
foreach (var target in targets)
var task = DownloadFile(target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private async Task DownloadFile(string target)
using (var wc = new WebClient())
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
await wc.DownloadFileTaskAsync(target, localPath);
Maybe I'm confused. In my opinion, I think I need to do something in DownloadFileCompleted
. Or, maybe the await wc.DownloadFileTaskAsync
line is sufficient.
How do I download multiple files at the same time, but wait until they're all download before continuing?
c# async-await task
add a comment |
I have an app written in C#. In this app, I need to download multiple files. Once all of the files are downloaded, I need to do something else. In an effort to download the files at the same time, I've written the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
foreach (var target in targets)
var task = DownloadFile(target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private async Task DownloadFile(string target)
using (var wc = new WebClient())
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
await wc.DownloadFileTaskAsync(target, localPath);
Maybe I'm confused. In my opinion, I think I need to do something in DownloadFileCompleted
. Or, maybe the await wc.DownloadFileTaskAsync
line is sufficient.
How do I download multiple files at the same time, but wait until they're all download before continuing?
c# async-await task
1
and what is wrong with your code?
– demo
Mar 25 at 16:37
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaitsDownloadFileTaskAsync
in theDownloadFile
method
– Dominik
Mar 25 at 17:01
add a comment |
I have an app written in C#. In this app, I need to download multiple files. Once all of the files are downloaded, I need to do something else. In an effort to download the files at the same time, I've written the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
foreach (var target in targets)
var task = DownloadFile(target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private async Task DownloadFile(string target)
using (var wc = new WebClient())
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
await wc.DownloadFileTaskAsync(target, localPath);
Maybe I'm confused. In my opinion, I think I need to do something in DownloadFileCompleted
. Or, maybe the await wc.DownloadFileTaskAsync
line is sufficient.
How do I download multiple files at the same time, but wait until they're all download before continuing?
c# async-await task
I have an app written in C#. In this app, I need to download multiple files. Once all of the files are downloaded, I need to do something else. In an effort to download the files at the same time, I've written the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
foreach (var target in targets)
var task = DownloadFile(target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private async Task DownloadFile(string target)
using (var wc = new WebClient())
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
await wc.DownloadFileTaskAsync(target, localPath);
Maybe I'm confused. In my opinion, I think I need to do something in DownloadFileCompleted
. Or, maybe the await wc.DownloadFileTaskAsync
line is sufficient.
How do I download multiple files at the same time, but wait until they're all download before continuing?
c# async-await task
c# async-await task
asked Mar 25 at 16:29
user687554user687554
1,36810 gold badges47 silver badges91 bronze badges
1,36810 gold badges47 silver badges91 bronze badges
1
and what is wrong with your code?
– demo
Mar 25 at 16:37
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaitsDownloadFileTaskAsync
in theDownloadFile
method
– Dominik
Mar 25 at 17:01
add a comment |
1
and what is wrong with your code?
– demo
Mar 25 at 16:37
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaitsDownloadFileTaskAsync
in theDownloadFile
method
– Dominik
Mar 25 at 17:01
1
1
and what is wrong with your code?
– demo
Mar 25 at 16:37
and what is wrong with your code?
– demo
Mar 25 at 16:37
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaits
DownloadFileTaskAsync
in the DownloadFile
method– Dominik
Mar 25 at 17:01
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaits
DownloadFileTaskAsync
in the DownloadFile
method– Dominik
Mar 25 at 17:01
add a comment |
1 Answer
1
active
oldest
votes
You could do the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
using (var wc = new WebClient())
foreach (var target in targets)
var task = DownloadFile(wc, target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private Task DownloadFile(WebClient wc, string target)
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
;
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
;
return wc.DownloadFileTaskAsync(target, localPath);
I moved the WebClient to the calling method because you will have to keep it open until all downloads finished (which you don't know when they will within your DownloadFile
method).
Additionally I removed the async
from your method declaration because you don't have to wait for something within the method.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342381%2fc-sharp-wait-for-multiple-file-downloads-to-complete%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could do the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
using (var wc = new WebClient())
foreach (var target in targets)
var task = DownloadFile(wc, target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private Task DownloadFile(WebClient wc, string target)
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
;
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
;
return wc.DownloadFileTaskAsync(target, localPath);
I moved the WebClient to the calling method because you will have to keep it open until all downloads finished (which you don't know when they will within your DownloadFile
method).
Additionally I removed the async
from your method declaration because you don't have to wait for something within the method.
add a comment |
You could do the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
using (var wc = new WebClient())
foreach (var target in targets)
var task = DownloadFile(wc, target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private Task DownloadFile(WebClient wc, string target)
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
;
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
;
return wc.DownloadFileTaskAsync(target, localPath);
I moved the WebClient to the calling method because you will have to keep it open until all downloads finished (which you don't know when they will within your DownloadFile
method).
Additionally I removed the async
from your method declaration because you don't have to wait for something within the method.
add a comment |
You could do the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
using (var wc = new WebClient())
foreach (var target in targets)
var task = DownloadFile(wc, target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private Task DownloadFile(WebClient wc, string target)
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
;
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
;
return wc.DownloadFileTaskAsync(target, localPath);
I moved the WebClient to the calling method because you will have to keep it open until all downloads finished (which you don't know when they will within your DownloadFile
method).
Additionally I removed the async
from your method declaration because you don't have to wait for something within the method.
You could do the following:
private void DownloadFiles(string[] targets)
var tasks = new List<Task>();
using (var wc = new WebClient())
foreach (var target in targets)
var task = DownloadFile(wc, target);
tasks.Add(task);
Task.WaitAll(tasks.ToArray());
private Task DownloadFile(WebClient wc, string target)
wc.DownloadProgressChanged += (object sender, DownloadProgressChangedEventArgs e) =>
Console.WriteLine(e.ProgressPercentage + "% downloaded.");
;
wc.DownloadFileCompleted += (object sender, AsyncCompletedEventArgs e) =>
Console.WriteLine(target + " was downloaded.");
// TODO: Signal this "Task" is done
;
return wc.DownloadFileTaskAsync(target, localPath);
I moved the WebClient to the calling method because you will have to keep it open until all downloads finished (which you don't know when they will within your DownloadFile
method).
Additionally I removed the async
from your method declaration because you don't have to wait for something within the method.
answered Mar 25 at 16:56
DominikDominik
5572 silver badges18 bronze badges
5572 silver badges18 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342381%2fc-sharp-wait-for-multiple-file-downloads-to-complete%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
and what is wrong with your code?
– demo
Mar 25 at 16:37
@demo I think his problem is that he effectively doesn't download in parallel (which he obviously wants to do) because he awaits
DownloadFileTaskAsync
in theDownloadFile
method– Dominik
Mar 25 at 17:01