Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #copy #multiple #files #folder #folder
ADD COMMENT
Topic
Name
8+1 =