适用于 Azure 的 Python SDK 提供 list_blobs 方法,用于使用容器名称、前缀和分隔符列出容器中存在的 blob。
基于 Node.js 的 azure-cli 还提供了列出 blob 的选项
天蓝色存储 blob 列表 [选项] [容器] [前缀]
我检查了上述命令的帮助,但找不到使用分隔符的选项。
有没有办法在上述命令中使用分隔符?
适用于 Azure 的 Python SDK 提供 list_blobs 方法,用于使用容器名称、前缀和分隔符列出容器中存在的 blob。
基于 Node.js 的 azure-cli 还提供了列出 blob 的选项
天蓝色存储 blob 列表 [选项] [容器] [前缀]
我检查了上述命令的帮助,但找不到使用分隔符的选项。
有没有办法在上述命令中使用分隔符?
截至目前,有:
$ az storage blob list -h
...
--delimiter : When the request includes this parameter, the operation returns
a :class:`~azure.storage.blob.models.BlobPrefix` element in the
result list that acts as a placeholder for all blobs whose
names begin with the same substring up to the appearance of the
delimiter character. The delimiter may be a single character or
a string.
...