0
Q:

copy files python

from shutil import copyfile
copyfile(src, dst)
5
import shutil

original = r'original path where the file is currently stored\file name.file extension'
target = r'target path where the file will be copied\file name.file extension'

shutil.copyfile(original, target)
3
from shutil import copyfile
copyfile(src, dst)
0

New to Communities?

Join the community