1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Google Cloud Storage にスクリプトでアクセス

Posted at

Google Cloud Storage にアクセスする方法です。

プロジェクトの ID を example-project01-123456 とします。

バケットの一覧

list_buckets.sh
gsutil ls -p example-project01-123456

実行結果が次のようになったとします。

$ ./list_buckets.sh 
gs://bucket001/

ファイルの一覧

gsutil ls -r gs://bucket001/

大きさも含めたファイルの一覧

gsutil ls -r -l gs://bucket001/

ファイルのダウンロード

gsutil cp gs://bucket001/folder_aa/file01.txt .
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?