amazon-s3
Amazon S3 console: download multiple files at once
It is not possible through the AWS Console web user interface. But it’s a very simple task if you install AWS CLI. You can check the installation and configuration steps on Installing in the AWS Command Line Interface After that you go to the command line: aws s3 cp –recursive s3://<bucket>/<folder> <local_folder> This will copy … Read more
Upload folder with subfolders using S3 and the AWS console
I suggest you to use AWS CLI. As it is very easy using command line and awscli aws s3 cp SOURCE_DIR s3://DEST_BUCKET/ –recursive or you can use sync by aws s3 sync SOURCE_DIR s3://DEST_BUCKET/ Remember that you have to install aws cli and configure it by using your Access Key ID and Secrect Access Key … Read more
How to delete files recursively from an S3 bucket
With the latest aws-cli python command line tools, to recursively delete all the files under a folder in a bucket is just: aws s3 rm –recursive s3://your_bucket_name/foo/ Or delete everything under the bucket: aws s3 rm –recursive s3://your_bucket_name If what you want is to actually delete the bucket, there is one-step shortcut: aws s3 rb … Read more
AWS S3: how do I see how much disk space is using [closed]
The command line tool gives a nice summary by running: aws s3 ls s3://mybucket –recursive –human-readable –summarize
S3 Error: The difference between the request time and the current time is too large
The time on your local box is out of sync with the current time. Sync up your system clock and the problem will go away.
Amazon S3 boto – how to create a folder?
There is no concept of folders or directories in S3. You can create file names like “abc/xys/uvw/123.jpg”, which many S3 access tools like S3Fox show like a directory structure, but it’s actually just a single file in a bucket.