Faster Way To Make S3 "folder Hierarchy" Than Parsing Of Filenames?
I want to make a relatively basic tool to browse a bucket in S3 as a file hierarchy rather than simply a list of filenames with slashes in them. Currently, I am using boto to get t
Solution 1:
Check this link: http://docs.aws.amazon.com/AmazonS3/latest/dev/ListingKeysHierarchy.html
listObjects()
has a parameter called delimiter
, which could be set to /
and resulting list of objects will look exactly as a tree of files. I think this is what you're looking for.
Post a Comment for "Faster Way To Make S3 "folder Hierarchy" Than Parsing Of Filenames?"