Download any web data with given URL like images,web pages etc
By Mash B
You can download web data such as images,html pages,files by just providing URL path.
Ex.
Using System.Net;
string downloadPath = @"C:\images";
WebClient client = new WebClient();
// give any valid http path
client.DownloadFile("http://xyz.com/abcd.jpg", downloadPath);
Download any web data with given URL like images,web pages etc (686 Views)