我想清除一个存储帐户,然后使用 AzCopy “还原”到它。
我清除昨晚的存储使用
$ctx = New-AzureStorageContext -StorageAccountName $storage -StorageAccountKey $key
Get-AzureStorageContainer a* -Context $ctx | Remove-AzureStorageContainer -Force
然后使用 AzCopy 但得到;
The remote server returned an error: (409) Conflict.
The specified container is being deleted. Try operation later.
我不想循环,试图再次创建存储。如何等待删除操作完成?
是否有 Get-AzureStorageContainer 状态?“删除?”