I have an amazon s3 bucket that has tens of thousands of filenames in it. What's the easiest way to get a text file that lists all the filenames in the bucket?
|
feedback
|
|
I'd recommend using boto. Then it's a quick couple of lines of python:
Save this as list.py, open a terminal, and then run:
| ||||
|
feedback
|
|
After zach I would also recommend boto, but I needed to make a slight difference to his code:
| |||
|
feedback
|
|
s3cmd is invaluable for this kind of thing
| |||
|
feedback
|
| ||||
|
feedback
|
|
Be carefull, amazon list only returns 1000 files. If you want to iterate over all files you have to paginate the results using markers : In ruby using aws-s3
end Hope this helps, vincent | |||
|
feedback
|