Lost my files while moving on AWS S3

0

I used the command on CLI -

aws s3 mv s3://<source_directory_path> <destination_directory_path> --recursive


aws s3 mv s3://<source_directory_path> s3://<destination_directory_path> --recursive

Missed the s3:// in the above one—it did move all the files—but I am not sure where.

Hardik Parikh

Posted 2019-08-03T01:06:50.663

Reputation: 1

1What OS did you do this on? It could be in your root directory under ://. – JakeGould – 2019-08-03T01:26:37.067

1

If you are on macOS or some Linux/Unix system they could just be on root. Look at this for more info.

– JakeGould – 2019-08-03T03:59:45.537

No answers