snippets/old_snippets/s3-move-folder.en.md

727 B

title seo_description date draft snippet_types
s3 move folder / rename folder snippet showing how to move files from one s3 'folder' to another 2022-03-17T15:08:04+01:00 false
s3
aws

Working on my Oblastle game today. In an effort to standardize the way I store images for the game in S3 I needed to move all the files with key image-service/images/oblastle/flags/ to /image-service/images/oblastle/flag/.

Here is how I did it:

$ aws s3 mv s3://travisshears.images/image-service/images/oblastle/flags/ s3://travisshears.images/image-service/images/oblastle/flag/ --recursive --profile personal

source