如何在 PowerShell 中使用 Azure CLI 删除 azure blob(文件)?

要使用 Azure CLI 删除 Azure blob,我们可以使用带有“delete”参数的“az storage blob”命令。在运行此命令之前,我们首先需要确保 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