What is the command to copy files recursively in a folder to an S3 bucket? aws s3 cp filename S3://bucketname –-recursive aws s3 cp . S3://bucketname --recursive code example
Example: copy folder from s3 to local
aws s3 cp s3://myBucket/dir localdir --recursive