Copy specific files from one folder to another code example
Example: copy multiple files from one folder to another folder
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)