s3cmd tool falls over on local directory

2

I'm trying to use s3cmd to copy a full bucket down to my local machine like so:

s3cmd -c .s3cfg-bespoke sync s3://my_bucket/ ~/local_folder/

There are three folders and a smattering of files in the bucket. The first folder and it's contents are copied without issue, but the second folder throws an error before anything is transferred:

Problem: OSError: [Errno 21] Is a directory: '/home/me/local_folder/images/'
S3cmd:   0.9.9.91

Traceback (most recent call last):
  File "/usr/bin/s3cmd", line 1736, in <module>
    main()
  File "/usr/bin/s3cmd", line 1681, in main
    cmd_func(args)
  File "/usr/bin/s3cmd", line 1070, in cmd_sync
    return cmd_sync_remote2local(args)
  File "/usr/bin/s3cmd", line 889, in cmd_sync_remote2local
    raise e
OSError: [Errno 21] Is a directory: '/home/me/local_folder/images/'

I've tried using the --recursive switch but it doesn't affect the outcome. I've been through the manpage and no other options seem like they would help.

Am I doing something wrong in the command? Or have I stumbled across a genuine bug?

ghickman

Posted 2011-12-22T17:35:24.057

Reputation: 375

Answers

3

From Amazon aws forum:

s3cmd -c .s3cfg-bespoke --rexclude "/$" sync s3://my_bucket/ ~/local_folder/

Hossein

Posted 2011-12-22T17:35:24.057

Reputation: 146

--rexclude "/$" – Ryu_hayabusa – 2014-10-07T17:51:13.480