DEV Community

Simon Foster
Simon Foster

Posted on • Originally published at funkysi1701.com on

Uploading Files to AWS

I am a fan of Azure but today I have been looking at AWS. Specifically how to upload and download files.

AWS S3 stores files in Buckets. I already had an AWS S3 account setup with a Bucket. I am going to assume you have got a bucket setup and concentrate on the code to get files in and out.

First step is to use nuget to install the AWS packages. In nuget the packages you want are called AWSSDK.Core and AWSSDK.S3.

The using statements you want to use are called Amazon.S3 and Amazon.S3.Transfer, not sure why this doesn’t match nuget, this difference caught me out a couple of times.

Now to the code that uploads files

AmazonS3Client AWSclient = new AmazonS3Client(accessKeyID, secretAccessKeyID, Amazon.RegionEndpoint.EUWest1);

TransferUtility fileTransferUtility = new TransferUtility(AWSclient);

using (FileStream streamWriter = new FileStream(path, FileMode.Open))

{

TransferUtilityUploadRequest fileTransferUtilityRequest = new TransferUtilityUploadRequest

{

BucketName = “flawlessimages”,

InputStream = streamWriter,

Key = fileName

};

fileTransferUtility.Upload(fileTransferUtilityRequest);

}

Lets break it down and look at what it does.

AmazonS3Client AWSclient = new AmazonS3Client(accessKeyID, secretAccessKeyID, Amazon.RegionEndpoint.EUWest1);

This creates an instance of AmazonS3Client, we are passing the Access Key and Secret Access Key both of which can be found from your Amazon S3 account My Security Credentials section. Amazon.RegionEndpoint.EUWest1 specifies the amazon data centres that your bucket is located in.

TransferUtility fileTransferUtility = new TransferUtility(AWSclient);

This creates an instance of TransfterUtility using the AmazonS3Client instance we created in the previous step.

using (FileStream streamWriter = new FileStream(path, FileMode.Open))

{

This opens up a filestream from a files path and specifies that the file should be opened.

TransferUtilityUploadRequest fileTransferUtilityRequest = new TransferUtilityUploadRequest

{

BucketName = “flawlessimages”,

InputStream = streamWriter,

Key = fileName

};

fileTransferUtility.Upload(fileTransferUtilityRequest);

}

This last step specifies which bucket to upload to, what input stream to upload and the Key to use. Key is just AWS way of referring to files, more commonly referred to as the filename.

This is all you need to do to upload a file to your Bucket. The file will be located at https://s3-eu-west-1.amazonaws.com/[bucketname]/[filename], however by default it will not be downloadable until you set Read permission to everyone, once you do that anyone who has the link will be able to download your file.

This is the same permission level as any file you have on your webserver, however AWS has a better way.

using (s3Client = new AmazonS3Client(accessKeyID, secretAccessKeyID, Amazon.RegionEndpoint.USEast1))

{

GetPreSignedUrlRequest request1 = new GetPreSignedUrlRequest

{

BucketName = bucketName,

Key = filename,

Expires = DateTime.Now.AddMinutes(5)

};

urlString = s3Client.GetPreSignedURL(request1);

}

Here we are generating a url to download the file, but we are specifying that it is only valid for 5 minutes. This means that if you share the url it will only work for 5 minutes, after that AWS will give an access denied message.

This is much better security than you have on a typical web server, and easy to implement, every time a user clicks on a download link you generate a new presigned url and send the download to the browser, as long as this process doesn’t take longer than 5 minutes the user will never know.

The post Uploading Files to AWS appeared first on Funky Si's Tech Talk.

Top comments (1)

Collapse
 
ac000 profile image
Andrew Clayton

If you're on Linux, you might want to look at this github.com/s3fs-fuse/s3fs-fuse