# https://www.globalsino.com/ICs/indexC.html
# Move (copy and then delete) all original files from a folder to the new folder.
# If the folder exists, then do nothing.

import shutil, os
import glob

source = r'C:\0Python\csvForTests\This test 1234567\New folder'
dest = r"C:\0Python\csvForTests\This test 1234567\New folder2" 

if not os.path.exists(dest):    
    os.makedirs(dest)
    for f in glob.glob(f"{source}/*.*"):
        shutil.move(f, dest)
       
else:
    print("There files in the folder")
    
