Add folder in Amazon s3 bucket

前端 未结 16 1342
青春惊慌失措
青春惊慌失措 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:40

    With aws cli, it is possible to copy an entire folder to a bucket.

    aws s3 cp /path/to/folder s3://bucket/path/to/folder --recursive
    

    There is also the option to sync a folder using aws s3 sync

提交回复
热议问题