user374760
user374760

Reputation: 409

Get image from external server

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

Answers (2)

RichieHindle
RichieHindle

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

Shoban
Shoban

Reputation: 23016

Download Image using c#

Download image from Web

Just Google/Bing "Download Image from server using c#" and you will get many more links.

Upvotes: 3

Related Questions