Answers for "python script to copy folder to foler"

8

copy whole directory python

import shutil

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

python copy file to another directory

import shutil
shutil.copy2('/src/dir/file.ext', '/dst/dir/newname.ext') # complete target filename given
shutil.copy2('/src/file.ext', '/dst/dir') # target filename is /dst/dir/file.ext
Posted by: Guest on February-22-2021

Code answers related to "python script to copy folder to foler"

Python Answers by Framework

Browse Popular Code Answers by Language