如何使用 PowerShell 获取 Azure 存储容器中的 blob(文件)?
要使用 PowerShell 获取 Azure 存储容器中的 blob,我们将使用 Get-AzStorageBlob 命令。 . 在运行此命令之前,我们需要确保 Azure 云帐户已连接 (Connect-AzAccount),并且设置了存储帐户所在的正确订阅 (Set-AzContext)。
要使用存储帐户,我们首先需要设置它的上下文,并且我们将使用存储帐户密钥设置上下文。
$rg = "az204" $storageaccount = "az204storage05june" $key = (Get-AzStorageAccountKey -ResourceGroupName $rg - Name $storageaccount)[0].Value $context = New-AzStorageContext -StorageAccountName $storageaccount - StorageAccountKey $key
我们现在已经创建了 Azure 存储上下文。要获取特定容器中的 Azure 文件(blob),我们将使用以下命令。
Get-AzStorageBlob -Container 'container1' -Context $context
输出
这就是从存储容器中检索 Azure blob 的方法。
广告