Answers for "copy multiple files from one folder to another folder"

0

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)
Posted by: Guest on April-18-2021

Code answers related to "copy multiple files from one folder to another folder"

Python Answers by Framework

Browse Popular Code Answers by Language