Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:06:03+00:00 2026-06-15T08:06:03+00:00

I want to download more than one file by using webclient method and many

  • 0

I want to download more than one file by using webclient method and many threads running at the same time. My url structure depends on a variable ‘int i’, so i use a for loop to generate urls and filepaths. The problem is until the started thread is brought upon, the url and filepath values are changed. The timeline occurs as below:

In main loop, url = “url1” and path = “filepath1”.

Thread1 is called with value “url1” and “filepath1”.

In main loop, url = “url2” and path = “filepath2”.

Thread2 is called with value “url2” and “filepath2”.

Thread1 started with value “url2” and “filepath2”.

Thread2 started with value “url2” and “filepath2”.

I couldn’t find any elegant solutions. What would you suggest?

string path = "";
string url = "";
string baseURL = "http://www.somewebsite.com/12/";
for (int i = 10; i <= DateTime.Now.Month; i++)
{
    path = "C:\\folder\\" + i.ToString() + ".html";
    url = baseURL + i.ToString();
    Thread webThread = new Thread(delegate()
    {
       downloadScheduleFile(url,path);
    });
    webThread.Start()
}

private void downloadScheduleFile(string url, string filepath)
{
    var client = new WebClient();
    try
    {
       client.DownloadFile(url, filepath);
    }
    catch(WebException e) {
       Console.WriteLine(System.Threading.Thread.CurrentThread.Name+e.Message);
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:06:05+00:00Added an answer on June 15, 2026 at 8:06 am

    Its because by the time your thread starts, path and url have changed. You have to create closer local copies.

    string baseURL = "http://www.somewebsite.com/12/";
    for (int i = 10; i <= DateTime.Now.Month; i++)
    {
        string path = "C:\\folder\\" + i.ToString() + ".html"; // path declared here
        string url = baseURL + i.ToString(); // url declared here
        Thread webThread = new Thread(delegate()
        {
           downloadScheduleFile(url,path);
        });
        webThread.Start()
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use the same image more than once and I would like
I want to download a single frame of a video file from a server
I want to download image from url and store in sdcard's folder. If folder
I want to download this picture using Ruby. How do I do that? http://farm1.static.flickr.com/92/218926700_ecedc5fef7_o.jpg
i have some file on my server and want to download this file with
Hi I want to download a file that is in tbz format. So I
I want to use one or many script languages in my Java application. From
I'm attempting to download a file from my QTP script. I want to record
I want download( cilk branch of gcc ) to build it with my gcc-4.7.
what I want: Download a webpage from a server > Save content in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.