1 min read

Retrieving Azure Storage resources and metadata by using the Azure Storage SDK for .NET Part 3 – Access containers using .NET SDK

Now we’ll create a .NET project which will access the containers.

Create a new dotnet program inside the blobmanager starter folder.

Also get the storage blob package and then build the web application.

dotnet add package Azure.Storage.Blobs --version 12.0.0
dotnet build

Next jump to the github page and get the code templates and update the strings with the values you collected in part 2.

Finally run the dotnet application and let it collect the storage account information.

Great work! You’ve just connected to your storage account using the SDK. You can continue on your own in the next part of the lab where you’ll enumerate containers.

Leave a Reply