In python, is there an easy way to copy all files and folders from some root to some destination root? Of course, creating all non-existent directories.
edit how this will change if the destination root directory already exists?
distutils.dir_util.copy_tree
shutil.copytree(src, dst[, symlinks=False[, ignore=None]])
Read this http://docs.python.org/library/shutil.html
There are some functions you can use, for example copytree
copytree