I have a web URL for the image. For example \"http://testsite.com/web/abc.jpg\". I want copy that URL in my local folder in \"c:\\images\\\"; and also when I copy that file into
thats not too difficult. Open a WebCLient and grab the bits, save them locally....
using ( WebClient webClient = new WebClient() ) { using (Stream stream = webClient.OpenRead(imgeUri)) { using (Bitmap bitmap = new Bitmap(stream)) { stream.Flush(); stream.Close(); bitmap.Save(saveto); } } }