How to check whether Azure Blob Storage upload was successful?
问题 I'm using an Azure SAS URL to upload a file to a blob storage: var blockBlob = new Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob(new System.Uri(sasUrl)); blockBlob.UploadFromFile(filePath); The file exists on my disk, and the URL should be correct since it is automatically retrieved from the Windows Store Ingestion API (and, if I slightly change one character in the URL's signature part, the upload fails with HTTP 403). However, when checking var blobs = blockBlob.Container.ListBlobs();