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
You could use a WebClient:
using (WebClient wc = new WebClient()) wc.DownloadFile("http://testsite.com/web/abc.jpg", @"c:\images\xyz.jpg");
This assumes you actually have write rights to the C:\images folder.
C:\images