I have a basic container that may point to s3 or any other storage service - and I'm trying to list the objects in a certain folder - but I can't find a way to do it non-recursively - all I can do is to pass it a prefix and ex_prefix (which is deprecated) but not a suffix/delimiter/depth - it would always list all the children's objects as well.
Is there a way to pass it a suffix/delimiter/depth?
According to the Apache libcloud documentation there is no way to accomplish that using only libcloud. There is however a pythonic way to do this using list comprehensions. Let's print the entire content of the bucket:
driver.list_container_objects(bucket)
We get:
If we want to limit by depth we can do:
[obj for obj in driver.list_container_objects(bucket) if (obj.name.count('/') < 1)]
Where we will get:
And if we want to filter by suffix we can just do:
[obj for obj in driver.list_container_objects(bucket) if (obj.name.endswith("badger"))]
Where we end up getting: