19 lines
727 B
Markdown
19 lines
727 B
Markdown
---
|
|
title: "s3 move folder / rename folder"
|
|
seo_description: "snippet showing how to move files from one s3 'folder' to another"
|
|
date: 2022-03-17T15:08:04+01:00
|
|
draft: false
|
|
snippet_types:
|
|
- s3
|
|
- aws
|
|
---
|
|
|
|
Working on my [Oblastle](https://oblastle.fun) 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:
|
|
|
|
```shell
|
|
$ aws s3 mv s3://travisshears.images/image-service/images/oblastle/flags/ s3://travisshears.images/image-service/images/oblastle/flag/ --recursive --profile personal
|
|
```
|
|
|
|
[source](https://bobbyhadz.com/blog/aws-s3-rename-folder)
|