Creating containers and blobs in Azure
Creating containers and blobs in Azure involves a series of steps that can be done through the Azure portal, Azure CLI, or programmatically using SDKs such as .NET, Python, or Java. Below are the detailed steps to create containers and blobs using different methods. Using Azure Portal Create a Container Navigate to the Storage Account : Log in to the Azure Portal . Go to your storage account or create a new one. Create a Container : In the left-hand menu, under the “Data storage” section, click on “Containers”. Click on the “+ Container” button. Provide a name for your container. Set the public access level (Private, Blob, or Container). Click “Create”. Upload a Blob Navigate to the Container : Click on the container you just created. Upload a Blob : Click on the “Upload” button. Select the file you want to upload. Set the required options and click “Upload”. Using Azure CLI Prerequisites Install the Azure CLI . Sign in to Azure using az login . Create a Container # Re...