如何使用 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
广告
数据结构
网络
关系数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP