为了账号安全,请及时绑定邮箱和手机立即绑定

上传到 AzureCloud BlobStorage 时为 UNIT_TESTCASE 命名异常

上传到 AzureCloud BlobStorage 时为 UNIT_TESTCASE 命名异常

C#
千巷猫影 2021-10-09 16:17:34
上传到 AzureCloud BlobStorage 时为 UNIT_TESTCASE 命名异常。我的代码是,CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();// Retrieve a reference to a container. CloudBlobContainer container =  blobClient.GetContainerReference("myblogcontainer");// Retrieve reference to a blob named "myblob".CloudBlockBlob blockBlob = container.GetBlockBlobReference("WeekendChamps.jpg");// Create or overwrite the "myblob" blob with contents from a local file. using (var fileStream =  System.IO.File.OpenRead(@"C:\Users\Bliss\Downloads\WeekendChamps.jpg")) { blockBlob.UploadFromStream(fileStream); }
查看完整描述

1 回答

?
30秒到达战场

TA贡献1828条经验 获得超6个赞

在 try catch 块中捕获StorageException,在 catch 块中,您可以处理异常以获取 RequestInformation 和 StorageExtendedErrorInformation。

在BlobErrorCodeStrings类中为 Blob 定义了各种异常代码。您可以对错误代码进行切换案例,也可以尝试匹配您需要的任何特定错误代码。


查看完整回答
反对 回复 2021-10-09
  • 1 回答
  • 0 关注
  • 182 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信