Answers for "copy folder using python"

8

copy whole directory python

import shutil

shutil.copytree(source, destination)
Posted by: Guest on March-06-2020
2

python copy dir

from shutil import copytree
shutil.copytree("sourcedir", "destination")
Posted by: Guest on February-26-2021

Code answers related to "copy folder using python"

Python Answers by Framework

Browse Popular Code Answers by Language