How to use AWS CLI to Add a Folder in Amazon S3 Bucket In AWS

Step 1: Install and Configure AWS CLI

curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /

  • Verify successful installation by checking the version of aws using below command.
aws --version

  • Configure your IAM user on the AWS CLI using below command
aws configure

Step 2: List the Buckets

  • Execute below command to list the buckets. Or If bucker is not exist create the bucket.
aws s3 ls

Step 3: Create Sub Folder in AWS S3

  • Create a folder on AWS S3
    • Execute the below command to create a folder on the AWS S3 bucket.
    • Provide bucket name and the new folder’s name you want to create on the S3.
aws s3api put-object --bucket <bucket_name> --key <new_folder_name>/ --content-length 0

  • You’ll get the below output on executing above command.

  • Check if folder is created on AWS S3 console.

  • Create a subfolder on AWS S3
    • Execute the below command to create a sub folder on the AWS S3 bucket.
    • Provide bucket name and the new sub folder’s name you want to create on the S3 along with the path.
aws s3api put-object --bucket <bucket_name> --key <path_to_sub_folder>

  • You’ll get the below output on executing above command.

Step 4: Verify the Folder

  • Verify if sub folder is generated on the existing folder on AWS S3 console.

  • We can also verify this using AWS CLI by executing below command.
aws s3 ls s3://<bucket_name> --recursive

In this way, you can create sub folder on AWS S3 using AWS CLI.

How to Create Subfolders in S3 Bucket using AWS CLI

The AWS Simple Storage Service (S3) is a cloud service provided by Amazon Web Services (AWS) to store your data securely. There are different approaches to storing and retrieving data from AWS S3; one of them is using the AWS CLI provided by Amazon Web Services. In this article, we will provide you with step-by-step instructions on how to use AWS CLI to create subfolders in an AWS S3 bucket.

Similar Reads

What Is Amazon S3?

Amazon S3 is a simple storage service provided by Amazon Web Services. It is highly durable and provides security and scalability for any kind of data. This data is stored as objects within resources called buckets. Amazon S3 is used for various purposes in the cloud because of its robust features for scaling and securing data. It helps people with all kinds of use cases from fields such as mobile and web applications, Big data, Machine Learning and many more....

Adding a Folder in Amazon S3 Bucket

Create an AWS account and an IAM role. Identity and Access Management (IAM) helps you secure the services you want to use by providing authentication and authorization as per your team’s requirements. Use the IAM role for accessing the S3 bucket data instead of directly using your main or root account....

Using AWS CLI to Add a Folder in Amazon S3 Bucket

Step 1: Install and Configure AWS CLI...

AWS CLI S3 Get Bucket Location

To get the bucket location by using the below command. Here you can replace the bucket name. That will displays the bucket location using the command line interface....

How to create folder on S3 from Ec2 instance

The AWS CLI or SDK can be used to create a “folder” (really, an S3 prefix) from an EC2 instance. Using a key that ends in a slash (“/”), use the aws s3api put-object command to construct the folder-like structure in your S3 bucket....

Common Errors and Solutions

Error 1: Access Denied...

Create Folders in S3 bucket using AWS CLI – FAQs

How do I create a folder and upload files on my S3?...