Copy blob between storage accounts
问题 I'm trying to copy a blob from one storage account to another (In a different location). I'm using the following code: var sourceContainer = sourceClient.GetContainerReference(containerId); var sourceBlob = sourceContainer.GetBlockBlobReference(blobId); if (await sourceBlob.ExistsAsync().ConfigureAwait(false)) { var targetContainer = targetClient.GetContainerReference(containerId); await targetContainer.CreateIfNotExistsAsync().ConfigureAwait(false); var targetBlob = targetContainer