Amazon S3 console: download multiple files at once

后端 未结 15 1462
傲寒
傲寒 2021-01-31 07:00

When I log to my S3 console I am unable to download multiple selected files (the WebUI allows downloads only when one file is selected):

https://console

15条回答
  •  灰色年华
    2021-01-31 07:22

    I have done, by creating shell script using aws cli (i.e : example.sh)

    #!/bin/bash
    aws s3 cp s3://s3-bucket-path/example1.pdf LocalPath/Download/example1.pdf
    aws s3 cp s3://s3-bucket-path/example2.pdf LocalPath/Download/example2.pdf
    

    give executable rights to example.sh (i.e sudo chmod 777 example.sh)

    then run your shell script ./example.sh

提交回复
热议问题