You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is what we currently have the head verb functions for; do you think there are advantages to using list instead? Or I guess head probably throws if it doesn't exist so you have to try-catch?
I forgot to followup after you explained head to me (thanks again!). head does indeed throw if the blob does not exist, so I ended up using head with a try-catch instead. The exists would be nice since it wouldn't throw.
This can be achieved by checking the output of
list(...; prefix)
, but having an official function would be nice.Azure's C# SDK has a
CloudBlob.Exists(BlobRequestOptions, OperationContext)
function.The text was updated successfully, but these errors were encountered: