Reputation: 46980
This documentation says that quote:
create a bucket with folders
IIUC S3 does not have folders. We can simulate folders by including the folder name in the object key like this:
folder1/key1.json
folder1/key2.json
Is my understanding correct?
Upvotes: 2
Views: 159
Reputation: 46859
you are correct - there are no real folders, they are just simulated based on the object key having the slash in its name.
Upvotes: 3