copy a file from one location to other in python code example
Example 1: copy files python
from shutil import copyfile
copyfile(src, dst)
Example 2: copy image from one folder to another in python
import glob
import shutil
import os
src_dir = "your/source/dir"
dst_dir = "your/destination/dir"
for jpgfile in glob.iglob(os.path.join(src_dir, "*.jpg")):
shutil.copy(jpgfile, dst_dir)