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?













-1















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?










share|improve this question

















  • 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 the DownloadFile method

    – Dominik
    Mar 25 at 17:01















-1















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?










share|improve this question

















  • 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 the DownloadFile method

    – Dominik
    Mar 25 at 17:01













-1












-1








-1








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 awaits DownloadFileTaskAsync in the DownloadFile method

    – Dominik
    Mar 25 at 17:01












  • 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 the DownloadFile 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










1 Answer
1






active

oldest

votes


















1














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.






share|improve this answer






















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



    );













    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer



























      1














      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.






      share|improve this answer

























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 25 at 16:56









        DominikDominik

        5572 silver badges18 bronze badges




        5572 silver badges18 bronze badges
















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현