简体   繁体   中英

How to download file from url that redirects?

i'm trying to download a file from a link that doesn't contain the file, but instead it redirects to another (temporary) link that contains the actual file. The objective is to get an updated copy of the program without the need to open a browser. The link is:

http://www.bleepingcomputer.com/download/minitoolbox/dl/65/

I've tried to use WebClient, but it won't work:

private void Button1_Click(object sender, EventArgs e)
{
      WebClient webClient = new WebClient();
      webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
      webClient.DownloadFileAsync(new Uri("http://www.bleepingcomputer.com/download/minitoolbox/dl/65/"), @"C:\Downloads\MiniToolBox.exe");
}

After searching and trying many things i've found this solution that involves using HttpWebRequest.AllowAutoRedirect .

Download file through code that has a redirect?

// Create a new HttpWebRequest Object to the mentioned URL.
HttpWebRequest myHttpWebRequest=(HttpWebRequest)WebRequest.Create("http://www.contoso.com");    
myHttpWebRequest.MaximumAutomaticRedirections=1;
myHttpWebRequest.AllowAutoRedirect=true;
HttpWebResponse myHttpWebResponse=(HttpWebResponse)myHttpWebRequest.GetResponse();

It seems that's exactly what i'm looking for, but i simply don't know how to use it :/ I guess the link is a parameter of WebRequest.Create. But how can i retrieve the file to my directory? yes, i´ma noob... Thanks in advance for your help.

I guess the easy option is simply this (after what you've got there.. and the URL you provided in place of http://www.contoso.com ):

using (var responseStream = myHttpWebResponse.GetResponseStream()) {
    using (var fileStream = 
              new FileStream(Path.Combine("folder_here", "filename_here"), FileMode.Create)) {
        responseStream.CopyTo(fileStream);
    }
}

EDIT:

In fact, this won't work. It isn't a HTTP redirect that downloads the file. Look at the source of that page.. you'll see this:

<meta http-equiv="refresh" content="3; url=http://download.bleepingcomputer.com/dl/1f92ae2ecf0ba549294300363e9e92a8/52ee41aa/windows/security/security-utilities/m/minitoolbox/MiniToolBox.exe">

It basically uses the browser to redirect. Unfortunately what you're trying to do won't work.

I switched from a WebClient based approach to a HttpWebRequest too because auto redirects didn't seem to be working with WebClient . I was using similar code to yours but could never get it to work, it never redirected to the actual file. Looking in Fiddler I could see I wasn't actually getting the final redirect.

Then I came across some code for a custom version of WebClient in this question :

 class CustomWebclient: WebClient { [System.Security.SecuritySafeCritical] public CustomWebclient(): base() { } public CookieContainer cookieContainer = new CookieContainer(); protected override WebRequest GetWebRequest(Uri myAddress) { WebRequest request = base.GetWebRequest(myAddress); if (request is HttpWebRequest) { (request as HttpWebRequest).CookieContainer = cookieContainer; (request as HttpWebRequest).AllowAutoRedirect = true; } return request; } } 

The key part in that code is AllowAutoRedirect = true , it's supposed to be on by default according to the documentation , which states:

AllowAutoRedirect is set to true in WebClient instances.

but that didn't seem to be the case when I was using it.

I also needed the CookieContainer part for this to work with the SharePoint external URLs we were trying to access.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM