Get Blob names
Gets a list of all blob names in an Azure Blob container. The blob name is the name of the blob object, for example myfile.txt
.
Use this action if you need a list of all the blob names in a container. If you only need to iterate over the blobs in a container one by one, consider using the For each blob name action instead.
Example
A company stores customer invoices as PDFs in an Azure Blob Storage container. This flow retrieves all invoice file names, processes each invoice, and updates a database with relevant details. Used actions: Get Blob names, For each Blob name and Function.
Returns
Properties
Name | Type | Description |
---|---|---|
Connection | Required | The Azure Blob container connection. The currently supported options are SAS URI and Connection string + container name . |
Dynamic connection | Optional | A connection dynamically created using the Create Azure Blob container connection action. |
Blob name prefix | Optional | To filter the list of blobs, specify a string for the prefix parameter. Note! The prefix is case sensitive. |
Result variable name | Required | The name of the Flow variable that contains the list of the blob names. |