2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Azureのストレージアカウント内のファイルの確認方法

Posted at

はじめに

コマンドラインからAzureを操作できるとシェルスクリプトを作成したりいろいろ便利です。今回はAzure cliを用いてストレージアカウント内のファイルの一覧の取得方法について紹介します。

操作

以下コマンドでAzureにログインできます。

azure login

以下コマンドで

az storage blob list --account-name <account storage name> --container-name <container name> --account-key <account key> --output table 

この操作によりテーブル形式で指定したストレージアカウントのコンテナからファイル一覧を取得できます。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?