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?
|
|
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:
|
|||||
|
|
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)
|
||||
|
|
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:
|
||||
|
|