Upload and download whole content of bucket

0

i want to upload and download whole content of s3 bucket content using command line. is there any command ?

質問済み 5年前244ビュー
1回答
2

AWS sdk API will only best option for upload entire folder and repo to s3 and download entire bucket of s3 to locally.

For uploading whole folder to s3

aws s3 sync . s3://BucketName
for download whole s3 bucket locally

aws s3 sync s3://BucketName .
you can also assign path As like BucketName/Path for particular folder in s3 to download

回答済み 5年前
profile picture
エキスパート
レビュー済み 1ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ