Add folder in Amazon s3 bucket

前端 未结 16 1336
青春惊慌失措
青春惊慌失措 2021-02-06 23:34

I want to add Folder in my amazon s3 bucket using coding. Can you please suggest me how to achieve this?

16条回答
  •  太阳男子
    2021-02-06 23:52

    The AWS:S3 rails gem does this by itself:

    AWS::S3::S3Object.store("teaser/images/troll.png", file, AWS_BUCKET)
    

    Will automatically create the teaser and images "folders" if they don't already exist.

提交回复
热议问题