Answers for "copy image from one folder to another in python"

1

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)
Posted by: Guest on November-27-2020
0

copy image from one folder to another 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)
Posted by: Guest on April-18-2021

Code answers related to "copy image from one folder to another in python"

Python Answers by Framework

Browse Popular Code Answers by Language