Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a directory on my local machine that I would like to copy to a remote machine and rename using Fabric. I know I can copy file using put, but how do I copy a directory using Fabric. I know it's easy enough using scp, but I would prefer to do it from within my fabfile if possible.

An example would be appreciated.

Thanks.

share|improve this question

1 Answer

up vote 24 down vote accepted

You can use put for that as well (at least in 1.0.0):

local_path may be a relative or absolute local file or directory path, and may contain shell-style wildcards, as understood by the Python glob module. Tilde expansion (as implemented by os.path.expanduser) is also performed.

See: http://docs.fabfile.org/en/1.0.0/api/core/operations.html#fabric.operations.put


Update: This example works fine (for me) on 1.0.0.:

from fabric.api import env
from fabric.operations import run, put

env.hosts = ['frodo@middleearth.com']

def copy():
    # make sure the directory is there!
    run('mkdir -p /home/frodo/tmp')

    # our local 'testdirectory' - it may contain files or subdirectories ...
    put('testdirectory', '/home/frodo/tmp')

# [frodo@middleearth.com] Executing task 'copy'
# [frodo@middleearth.com] run: mkdir -p /home/frodo/tmp
# [frodo@middleearth.com] put: testdirectory/HELLO -> \
#     /home/frodo/tmp/testdirectory/HELLO
# [frodo@middleearth.com] put: testdirectory/WORLD -> \
#     /home/frodo/tmp/testdirectory/WORLD
# ...
share|improve this answer
Thanks. I'm getting an exception (Is a directory) any chance of an example? – gaviscon_man Mar 15 '11 at 16:42
@gaviscon_man: Added a (tested) example, but really it's just vanilla fab, no tricks. You'll get errors, if the target directories aren't in place already - so I included a simple mkdir -p before the put. (But other subdirectories, which are below the testdirectory will automatically created on the remote machine). – miku Mar 15 '11 at 16:59
Thank you that's very helpful. – gaviscon_man Mar 15 '11 at 17:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.