How can I create a folder under a bucket using boto library for Amazon s3?
I followed the manual, and created the keys with permission, metadata etc, but no where in the boto’s documentation it describes how to create folders under a bucket, or create a folder under folders in bucket.
There is no concept of folders or directories in S3. You can create file names like
"abc/xys/uvw/123.jpg", which many S3 access tools likeS3Foxshow like a directory structure, but it’s actually just a single file in a bucket.