How do I programmatically save an image from a URL?

It would be easier to write something like this:

WebClient webClient = new WebClient();
webClient.DownloadFile(remoteFileUrl, localFileName);

Leave a Comment