Uploading blobs to Azure Blob Storage is a key task when managing files in the cloud.
Azure provides multiple methods to upload blobs, depending on your use case and environment.
Below is a detailed guide covering several methods to upload blobs to Azure Blob Storage using the Azure Portal, Azure CLI, Azure PowerShell, and programmatically with Azure SDKs.
Method 1: Upload Blobs Using the Azure Portal
The Azure Portal provides an easy-to-use graphical interface to upload files to Blob Storage.
Steps to Upload Blobs via Azure Portal
1. Sign in to Azure Portal
Go to Azure Portal.
Log in with your Azure account credentials.
2. Navigate to Your Storage Account
In the left-hand menu, select Storage accounts.
Click on the desired Storage Account.
3. Open Blob Containers
Under Data Storage, click on Containers.
Choose the Blob Container where you want to upload the blob, or create a new one by clicking + Container.
4. Upload the Blob
Inside the container, click on the Upload button at the top.
In the Upload Blob pane, click Browse for files to select the file(s) from your local machine that you want to upload.
You can also drag and drop files directly into the pane.
(Optional) Configure Blob tier for the uploaded files (Hot, Cool, or Archive).
Click Upload to start the upload process.
5. Verify Upload
Once the upload is complete, you can see the uploaded blob listed in the container.
You can click on the blob name to view additional details like metadata, access properties, and access URLs.
Method 2: Upload Blobs Using Azure CLI
The Azure CLI is a command-line tool that allows you to manage Azure resources and upload files to Blob Storage.
Steps to Upload Blobs via Azure CLI
1. Install Azure CLI
If you don’t have the Azure CLI installed, follow the instructions to install it from the official Azure CLI installation guide.
2. Log in to Azure
Open a terminal or command prompt and run:
xxxxxxxxxx
11az login
3. Upload Blob
Use the az storage blob upload
command to upload a file to a container in your storage account.
Example:
xxxxxxxxxx
51az storage blob upload \
2--account-name <your-storage-account> \
3--container-name <your-container> \
4--file <path-to-local-file> \
5--name <blob-name>
Replace
<your-storage-account>
with the name of your storage account.Replace
<your-container>
with the name of the container you want to upload the blob to.Replace
<path-to-local-file>
with the local file path of the file to upload.Replace
<blob-name>
with the desired name for the blob in the storage container.
Example command:
xxxxxxxxxx
51az storage blob upload \
2--account-name mystorageacct \
3--container-name mycontainer \
4--file /path/to/file.txt \
5--name file.txt
4. Verify the Upload
To confirm the blob has been uploaded, list the blobs in the container using:
xxxxxxxxxx
41az storage blob list \
2--account-name <your-storage-account> \
3--container-name <your-container> \
4--output table
Method 3: Upload Blobs Using Azure PowerShell
If you prefer using PowerShell to manage Azure resources, you can upload blobs using the Az.Storage
module in Azure PowerShell.
Steps to Upload Blobs via Azure PowerShell
1. Install Azure PowerShell
If you don't have Azure PowerShell installed, follow the installation instructions on Install Azure PowerShell.
2. Log in to Azure
Open PowerShell and run:
xxxxxxxxxx
11Connect-AzAccount
3. Upload Blob
Use the Set-AzStorageBlobContent
cmdlet to upload a blob from a local file to your container.
Example:
xxxxxxxxxx
51Set-AzStorageBlobContent `
2-File <path-to-local-file> `
3-Container <your-container> `
4-Blob <blob-name> `
5-Context $context
Replace
<path-to-local-file>
with the full path to your local file.Replace
<your-container>
with the name of the target container.Replace
<blob-name>
with the desired name for the blob.$context
is your storage account context, which can be created like this:
xxxxxxxxxx
31$context = New-AzStorageContext `
2-StorageAccountName <your-storage-account> `
3-StorageAccountKey <your-storage-account-key>
Example command:
xxxxxxxxxx
51Set-AzStorageBlobContent `
2-File C:\files\file.txt `
3-Container mycontainer `
4-Blob file.txt `
5-Context $context
4. Verify the Upload
List the blobs in the container to confirm the upload:
xxxxxxxxxx
31Get-AzStorageBlob `
2-Container <your-container> `
3-Context $context
Method 4: Upload Blobs Programmatically Using Azure SDKs
You can also upload blobs programmatically using Azure SDKs for various programming languages such as C#, Python, Java, and JavaScript.
Upload Blob Using Azure SDK for Python
1. Install Azure Storage Blob SDK
Install the required package using pip:
xxxxxxxxxx
11pip install azure-storage-blob
2. Upload Blob Using Python
Here's a sample Python script that uploads a blob to Azure Blob Storage.
xxxxxxxxxx
141from azure.storage.blob import BlobServiceClient
2# Replace with your storage account connection string
3connection_string = "<your-connection-string>"
4container_name = "<your-container>"
5blob_name = "<blob-name>"
6file_path = "<path-to-local-file>"
7# Create a BlobServiceClient
8blob_service_client = BlobServiceClient.from_connection_string(connection_string)
9# Get the container client
10container_client = blob_service_client.get_container_client(container_name)
11# Upload the file
12with open(file_path, "rb") as data:
13 container_client.upload_blob(blob_name, data)
14print(f"Blob {blob_name} uploaded successfully.")
Replace the placeholders with your connection string, container name, blob name, and local file path.
3. Verify the Upload
You can list the blobs in the container using the SDK or the Azure Portal to confirm the upload.
Method 5: Upload Large Files Using AzCopy
AzCopy is a command-line utility designed specifically for managing large-scale data transfers to and from Azure Blob Storage.
It is ideal for uploading large datasets efficiently.
Steps to Upload Large Files with AzCopy:
1. Install AzCopy
Download and install AzCopy from the official AzCopy download page.
2. Log in to Azure
Run the following command to log in:
xxxxxxxxxx
11azcopy login
3. Upload Blob
Use the azcopy copy
command to upload a file to Azure Blob Storage.
Example:
xxxxxxxxxx
11azcopy copy "<path-to-local-file>" "https://<your-storage-account>.blob.core.windows.net/<your-container>/<blob-name>?<sas-token>"
Replace
<path-to-local-file>
with the path to your local file.Replace
<your-storage-account>
,<your-container>
,<blob-name>
, and<sas-token>
with your actual storage account name, container name, blob name, and SAS token (if using SAS for authentication).
4. Verify the Upload
Use the azcopy list
command to confirm the blob exists in the container:
xxxxxxxxxx
11azcopy list "https://<your-storage-account>.blob.core.windows.net/<your-container>?<sas-token>"
Summary
Azure Blob Storage offers several ways to upload files, each catering to different needs:
Azure Portal: User-friendly, ideal for small uploads.
Azure CLI: Efficient for automation via command line.
Azure PowerShell: Suitable for users familiar with PowerShell scripts.
Azure SDKs: For programmatic uploads in different languages (Python, C#, Java, etc.).
AzCopy: Best for uploading large files or large datasets at scale.
Choose the method that best fits your workflow, whether it's manual, automated, or programmatically driven.
Leave a Reply