如何使用 PowerShell 中的 Azure CLI 删除 Azure Blob(文件)?


若要使用 Azure CLI 删除 Azure Blob,我们可以将“az storage blob”命令与“delete”参数结合使用。在运行此命令之前,我们首先需要确保 Azure 帐户已连接(az login)且已设置正确的订阅(az account set)

若要使用 Azure 存储帐户,我们需要对存储进行身份验证。我们可以使用存储密钥或存储连接字符串。我们在此说明了如何检索连接字符串。

$storageaccount = 'az204storage05june'
$connectionstring = az storage account show-connection-string -
n $storageaccount -otsv

以下命令将从存储容器container1删除名为‘Test1.txt’的 Azure 存储 Blob。

az storage blob delete --account-name $storageaccount `
   --container-name 'container1' `
   --name 'Test1.txt' `
   --connection-string $connectionstring --verbose

更新时间:2021 年 9 月 1 日

4K+ 浏览量

开启你的职业生涯

完成课程后获得认证

开始
广告
© . All rights reserved.