I need to find out how to delet a file on my S3 bucket using the right-aws gem (https://github.com/rightscale/right_aws). The current doc (the README at github) isn't very helpful...

Has anyone tried doing something similar and would like to share their findings?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

RightAws::S3::Key have a method called delete. Click here for documentation.

link|improve this answer
Thanks. Was able to get it to work with: s3 = RightAws::S3.new(aws_access_key_id, aws_secret_access_key); bucket = s3.bucket('bucket_name'); bucket.delete_folder('uploads/users/1/video/1') – Christian Fazzini Feb 20 '11 at 14:13
Deleting via folder can be little risky if you have two keys uploads/users/1/video/1, uploads/users/1/video/1/123. You need to make sure that you have no such case. – Zimbabao Feb 20 '11 at 14:36
Hmmm, good point. What should be used then? – Christian Fazzini Feb 21 '11 at 13:01
I told that in my answer. key1 = RightAws::S3::Key.create(bucket, 'uploads/users/1/video/1'); key1.delete() – Zimbabao Feb 21 '11 at 14:46
I don't think delete() removes folders... I think delete is used more for individual files. Correct me if I am wrong. I have tried this, but it doesn't seem like it is removing the folder – Christian Fazzini Feb 22 '11 at 8:56
show 1 more comment
feedback

The best is AWS::S3

link|improve this answer
Doesn't AWS:S3 have some issues? Could be the same reason why Carrierwave moved from this gem to right_aws? Could be wrong here... – Christian Fazzini Feb 20 '11 at 12:34
It seems that the appoxy/aws is now the one to use. Right_aws is now called simply aws, and you install it by typing 'gem install aws' rubygems.org/gems/aws – Tom Andersen Apr 18 '11 at 15:34
Oops - I now its altogether more complicated... It seems that right_aws is alive and well on its own. Don't know how to pick one.. – Tom Andersen Apr 18 '11 at 15:44
feedback

With the newly released aws-sdk gem you can delete a file like so:

s3 = AWS::S3.new(:access_key_id => '...', :secret_access_key => '...')
s3.buckets['YOUR_BUCKET_NAME'].objects['OBJECT_KEY'].delete
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.