I found this extension method to check Blob storage exists
Testing Existence of a Windows Azure Blob
Checking if a blob exists in Azure Storage
However, I found similar build in utility methods inside Microsoft.WindowsAzure.Storage
.
CloudBlobContainer.Exists
CloudBlockBlob.Exists
As far as I tested, they function similar to the extension method.
Question:
Are they new utility methods? Should I use build in Exists
method or use custom extension method.