I want to add Folder in my amazon s3 bucket using coding. Can you please suggest me how to achieve this?

Thanks, Bharat

link|improve this question
It would help to specify in which is language is your "coding". – samvermette Dec 18 '11 at 19:03
feedback

3 Answers

There are no folders in Amazon S3. It just that most of the S3 browser tools available show part of the key name separated by slash as a folder.

If you really need that you can create an empty object with the slash at the end. e.g. "folder/" It will looks like a folder if you open it with a GUI tool and AWS Console.

link|improve this answer
feedback

With AWS SDK .Net works perfectly:

var folderKey =  folderName + "/"; //end the folder name with "/"
AmazonS3 client = Amazon.AWSClientFactory.CreateAmazonS3Client(AWSAccessKey, AWSSecretKey);
var request = new PutObjectRequest();
request.WithBucketName(AWSBucket);
request.WithKey(folderKey);
request.WithContentBody(string.Empty);
S3Response response = client.PutObject(request);

Then refresh your AWS console, and you will see the folder

link|improve this answer
feedback

The AWS:S3 rails gem does this by itself:

AWS::S3::S3Object.store("teaser/images/troll.png", file, AWS_BUCKET)

Will automatically create the teaser and images "folders" if they don't already exist.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.