I\'m trying to download a number of pdf files automagically given a list of urls.
Here\'s the code I have:
HttpWebRequest request = (HttpWebRequest)W
Why not use the WebClient class?
WebClient
using (WebClient webClient = new WebClient()) { webClient.DownloadFile("url", "filePath"); }