“Скопировать папку от S3 в локальный” Ответ

AWS Copy Polder от Local до S3

Recursively copying local files to S3

When passed with the parameter --recursive, the following cp command recursively copies all files under a specified directory to a specified bucket and prefix while excluding some files by using an --exclude parameter. In this example, the directory myDir has the files test1.txt and test2.jpg:

aws s3 cp myDir s3://mybucket/ --recursive --exclude "*.jpg"
Distinct Dormouse

Скопировать папку от S3 в локальный

aws s3 cp s3://myBucket/dir localdir --recursive
Strange Salamander

Скопируйте локальные файлы в S3

aws s3 cp <your directory path> s3://<your bucket name> --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --recursive
Encouraging Emu

Ответы похожие на “Скопировать папку от S3 в локальный”

Вопросы похожие на “Скопировать папку от S3 в локальный”

Больше похожих ответов на “Скопировать папку от S3 в локальный” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования