copy file from one directory to another python code example
Example 1: copy files python
from shutil import copyfile
copyfile(src, dst)
Example 2: python copy file to another directory
import shutil
shutil.copy2('/src/dir/file.ext', '/dst/dir/newname.ext')
shutil.copy2('/src/file.ext', '/dst/dir')
Example 3: copy file in python3
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)
Example 4: 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)
Example 5: Copy any files from one folder to another folder in python
import shutil
import os
os.chdir('source_image_dir_path')
dst_dir = "your_destination_dir_path"
for f in os.listdir():
shutil.copy(f, dst_dir)
Example 6: copy directory from one location to another python
src = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / source'
dest = 'C:/Users / Rajnish / Desktop / GeeksforGeeks / destination'
destination = shutil.copytree(src, dest)