I want to check a particular file exist in Azure Blob Storage. Is it possible to check by specifying it's file name? Each time i got File Not Found Error.
Browsing your Azure Blobs using Azure Storage Explorer. Another option is to use Azure Storage Explorer which is now built into the Azure portal (preview). From with the Azure Storage Explorer Application, you can browse the containers of that storage account and view the size of each blob inside each container.
1 Answer. Show activity on this post. The little filter icon on the right side when you are viewing a container is probably what you're looking for. You can also select Flat listmode to show all of the blobs in the entire container in one list.
var blob = client.GetContainerReference(containerName).GetBlockBlobReference(blobFileName); if (blob.Exists()) //do your stuff
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With