0

Python SDK for Azure には、コンテナー名、プレフィックス、および区切り記号を使用して、コンテナー内に存在する BLOB を一覧表示するための list_blobs メソッドが用意されています。

Node.js ベースの azure-cli には、BLOB を一覧表示するためのオプションも用意されています。

Azure ストレージ BLOB リスト [オプション] [コンテナー] [プレフィックス]

上記のコマンドのヘルプを確認しましたが、区切り記号を使用するオプションが見つかりませんでした。

上記のコマンドで区切り記号を使用する方法はありますか?

4

2 に答える 2

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 に答える