How to get a list of all URLs from blobs in a container in Azure?

Garima Sharma 1 Reputation point
2022-11-17T16:45:50.927+00:00

So far Im listing the names and creation dates of the blobs from the container in Azure Blob Storage.
Now I want to add a list of the URLs from the same blobs. I did a lot of research but I can't really find something that is of use.

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,192 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Roderick Bant 2,056 Reputation points
    2022-11-17T19:36:52.003+00:00

    Hi @Garima Sharma

    If you already have the list of blob names, the urls for these blobs are easy to construct in code as they follow fixed structure. This documentation provides detailed information. But basically, the structure is the following: https://{{ storageaccount name }}.blob.core.windows.net/{{ container name }}/{{ blob name}}

    for example: https://myaccount.blob.core.windows.net/mycontainer/myblob

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.