I want to add Folder in my amazon s3 bucket using coding. Can you please suggest me how to achieve this?
in-order to create a directory inside s3 bucket and copy contents inside that is pretty simple.
S3 command can be used: aws s3 cp abc/def.txt s3://mybucket/abc/
Note: / is must that makes the directory, otherwise it will become a file in s3.