Azure Blob Storage Tutorial: Upload, Download & Manage Files
Updated Feb 5, 20262 min read
This tutorial covers managing Azure Blob Storage using Azure Storage Explorer. Estimated completion time: 12 minutes.
Prerequisites
- Azure Storage Explorer installed (installation guide)
- Connected to your storage account (connection guide)
Step 1: Create a Container
Containers are like folders for blobs. To create one:
- Expand your storage account in the left panel
- Right-click Blob Containers
- Click Create Blob Container
- Name your container (lowercase letters, numbers, and hyphens only)
- Press Enter
Step 2: Upload Files
- Open your container
- Click Upload in the toolbar (or drag and drop files)
- Select files from your computer
- Choose the blob type (Block Blob for most files)
- Click Upload
For large uploads, Storage Explorer shows progress and supports resuming interrupted transfers.
Step 3: Download Files
- Select one or more blobs
- Click Download in the toolbar
- Choose a local destination
- Click Save
Step 4: Set Access Levels
By default, containers are private. To make blobs publicly accessible:
- Right-click the container
- Click Set Public Access Level
- Choose: Private, Blob (read-only), or Container (list + read)
Warning: Public access means anyone with the URL can download the file. Use Shared Access Signatures (SAS) for controlled access.
Step 5: Manage Blobs
- Rename: Right-click > Rename
- Delete: Select > Delete (or press Delete key)
- Copy URL: Right-click > Copy URL
- Properties: Right-click > Properties (see size, type, last modified)