how to create a similar file present in one path to another path in python code example
Example: copy whole directory python
import shutil
shutil.copytree(source, destination)
import shutil
shutil.copytree(source, destination)