Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have create a folder in s3, named "test" and I push "test_1.jpg", "test_2.jpg" into "test".

Now I want to use boto to delete folder "test".

What should I do?

share|improve this question
just a guess wouldn't rm -r /test work? – pyCthon Jul 11 '12 at 6:12

3 Answers

up vote 5 down vote accepted

There are NO folders in S3. All you got is a key with slashes that shows specially in some programs. amazon S3 boto - how to create folder?. You can list files by prefix and delete:

for key in bucket.list(prefix='/your/directory/'):
    key.delete()
share|improve this answer
How to delete the directory? If this directory will be deleted automatically when all files in this directory are deleted? – wade huang Jul 11 '12 at 7:40
Thank you.. I have finished it~ – wade huang Jul 11 '12 at 10:10

conn = boto.connect_s3(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY) conn.delete_Bucket('BucketNameHere')

More ref can be found here

I use s3cmd to delete buckets in s3(Cannot delete non-empty buckets)

s3cmd del s3://test/test_1.jpg s3://test/test_2.jpg
share|improve this answer
I don't want to delete buckets, I just want to delete one folder in the buckets. – wade huang Jul 11 '12 at 7:24

Or more efficiently you can use bucket.delete_keys() with a list of keys (with a large number of keys I found this to be an order of magnitude faster).

Something like this:

delete_key_list = []
for key in bucket.list(prefix='/your/directory/'):
    delete_key_list.append(key)
    if len(delete_key_list) > 100:
        bucket.delete_keys(delete_key_list)
        delete_key_list = []

if len(delete_key_list) > 0:
    bucket.delete_keys(delete_key_list)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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