...

/

Download, Move, and Delete Objects

Download, Move, and Delete Objects

Learn about some basic and useful operations applicable to S3 objects.

We'll cover the following...

Download an object with the AWS CLI

Using AWS CLI

  • We can use the cp command to download objects.

    Example 1:

    aws s3 cp s3://my-pets/dingo.jpg ./
    

    The command above copies the object dingo.jpg to the current working

    Example 2:

    Using the cp command above, we can only copy one object at a time. To download multiple objects, we use the ...