Python public recipes
The code will copy all of the files and folders in 'source_directory' to 'destination_directory'.
Shortcut: file.copy.directories
import shutil
shutil.copytree(source, destination)
The code will copy all of the files and folders in 'source_directory' to 'destination_directory'.
Shortcut: file.copy.directories
import shutil
shutil.copytree(source, destination)