Unfortunately the Azure Storage Explorer or Azure Portal doesn’t allow you to search for a filename stored on a blob, so a simple way to is to run PowerShell script to return the results and paths. This example outputs to a .csv
1 2 3 4 5 6 7 |
#Script to Perform a search for files on an Azure Blob #Set the Storage Account Context $ctx = New-AzStorageContext -StorageAccountName "YOUR_SAC_NAME" -StorageAccountKey "YOUR_KEY" #Perform Search Outputting to a CSV File #Specific Containter Name for -Container #Change Bananas for the search string. Get-AzStorageBlob -Context $ctx -Container "YOUR_CONTAINER_NAME" | Where-Object {$_.Name -like "*Bannanas*"} | Select-Object Name | Export-csv C:\temp\search_results.csv -NoTypeInformation |
Hope that helps!