

# https://www.globalsino.com/ICs/
# Move files from one directory to another
# will silently replace a file if the file already exist


import os
import shutil
  
source = r"C:\Users\yyliao\Downloads\AAPL.csv"
destination = r"C:\GlobalSino2\images\AAPL.csv"

os.replace(source, destination)

