Azure Storage Blobs provides scalable and secure object storage solutions for our applications. At times, we may need to move blobs between containers within the same storage account. The Azure Portal provides an intuitive interface to accomplish this without writing code. This article demonstrates how to move Azure Storage Blobs between containers using the Azure Portal.
Prerequisites
Before you begin, ensure that we have:
- An active Azure subscription.
- A Storage Account with at least two containers (Follow the steps below to create one).
- The necessary RBAC permissions (Storage Blob Data Contributor or higher) to manage blobs.
Creating a Storage Account with at Least Two Containers
1. Create a Storage Account
- Sign in to Azure Portal.
- In the search bar, type Storage accounts and click on Create.
- Select our Subscription and Resource Group.
- Enter a unique Storage account name.
- Choose the Region, Performance, and Redundancy options as per our requirements.
- Click Review + Create, then Create.
![Create storage account]()
2. Create Two Containers
- Open our newly created Storage Account.
- In the left-hand menu, select Containers under the Data Storage section.
- Click on + Container.
- Enter a Name for the container and select the Public access level.
- Click Create.
- Repeat steps 3-5 to create a second container.
![]()
Steps to Move Blobs Between Containers
1. Sign in to the Azure Portal
- Navigate to Azure Portal.
- In the search bar, type Storage accounts and select our storage account.
2. Open the Blob Storage
- In the left-hand menu, select Containers under the Storage browser section.
- Click on the container where the blobs currently reside.
3. Select the Blob(s) to Move
- In the container, locate and select the blob(s) we want to move.
- Click on the Copy button from the top menu.
![Click button]()
4. Choose the Destination Container
- Navigate back to the Containers section.
- Open the target container where you want to move the blobs.
- Click on Paste in the top menu.
![Destination Container]()
5. Delete the Original Blob (Optional)
Once the blob is copied successfully to the new container, we can delete the original blob to complete the move operation.
- Go back to the source container.
- Select the copied blob and click Delete.
Alternative: Using Azure Storage Explorer
If we need to move multiple blobs efficiently, consider using Azure Storage Explorer, which provides a drag-and-drop interface for bulk operations.
Conclusion
Moving blobs between containers in Azure Portal is straightforward using the Copy and Paste approach. However, for large-scale operations, consider using Azure Storage Explorer or Azure CLI/Azure PowerShell for automation.