0

适用于 Azure 的 Python SDK 提供 list_blobs 方法,用于使用容器名称、前缀和分隔符列出容器中存在的 blob。

基于 Node.js 的 azure-cli 还提供了列出 blob 的选项

天蓝色存储 blob 列表 [选项] [容器] [前缀]

我检查了上述命令的帮助,但找不到使用分隔符的选项。

有没有办法在上述命令中使用分隔符?

4

2 回答 2

0

有没有办法在上述命令中使用分隔符?

到今天为止,没有。在 Blob 容器中列出 Blob 时,没有指定分隔符的选项。

Github 上提供了 CLI 工具源代码:https ://github.com/Azure/azure-xplat-cli 。您可以做的是在那里提出问题并要求此功能或尝试自己实现此功能。您要进行更改的文件是:https ://github.com/Azure/azure-xplat-cli/blob/dev/lib/commands/storage/storage.blob._js 。

于 2016-09-14T03:17:13.700 回答
0

截至目前,有:

$ 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.
...
于 2020-03-15T21:13:30.080 回答