Я получаю сообщение об ошибке «Указанный большой двоичный объект не существует», когда выполняется Start-AzStorageBlobCopy
, который копирует большой двоичный объект в другой новый большой двоичный объект в той же папке, проблема, похоже, связана с этим целевым большим двоичным объектом.
$sasKey = 'sv=2019-02-02&ss=b&srt=sco&sp=rwdlac&se=2020-06-07T20:40:57Z&st=2020-01-07T13:40:57Z&spr=https&sig=...'
$storageContext = New-AzStorageContext -StorageAccountName 'my-storage-account' -SasToken $sasKey
$context = $context.Context
Start-AzStorageBlobCopy `
-Context $context `
-SrcContainer 'labo' `
-SrcBlob 'folder/document.txt' `
-DestContainer 'labo' `
-DestBlob 'folder/document2.txt' `
-Force -Verbose
Start-AzStorageBlobCopy: The specified blob does not exist. HTTP Status Code: 404 - HTTP Error Message: The specified blob does not exist.
ErrorCode: CannotVerifyCopySource
ErrorMessage: The specified blob does not exist.
RequestId:5ba3de1b-a01e-008f-4f35-f3644c000000
Time:2020-03-05T21:32:23.8622305Z
At line:5 char:1
+ Start-AzStorageBlobCopy `
+ ~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Start-AzStorageBlobCopy], StorageException
+ FullyQualifiedErrorId : StorageException,Microsoft.WindowsAzure.Commands.Storage.Blob.Cmdlet.StartAzureStorageBlobCopy