Answers for "aws copy folder to s3"

4

aws copy folder from local to 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"
Posted by: Guest on April-28-2020
1

copy files from aws s3

aws s3 sync  s3://bucketname/folder/ c:localcopy

aws s3 sync  s3://bucketname/folder/ c:localcopy --delete
Posted by: Guest on September-06-2021
1

copy folder from s3 to local

aws s3 cp s3://myBucket/dir localdir --recursive
Posted by: Guest on April-21-2020

Browse Popular Code Answers by Language