Reputation: 409
We are storing our images at Amazon S3. Let's say the location is http://media.sitename.com/folder1/image1.jpg.
I want to copy this file and store it in our server. Is it possible to do this using C#. I am using asp.net 4.0.
Please help. Thanks.
Upvotes: 2
Views: 3399
Reputation: 281365
Here you go:
using (var client = new WebClient())
{
client.DownloadFile(imageURL, localPathname);
}
where imageURL
is http://media.sitename.com/folder1/image1.jpg and localPathname
is something like C:\my\images\directory\cachedImage.jpg
Upvotes: 5
Reputation: 23016
Just Google/Bing "Download Image from server using c#" and you will get many more links.
Upvotes: 3