HI,
wrote this code with an intention to copy files from a specified directory / file
import os
import shutil
sourcePath = r'G:/Air.doc'
destPath = r'C:\Users\Desktop\test'
shutil.copy(sourcePath, destPath)
this only copies a specified file(in my case Air.doc)
Now ild like to know how ild modify the same to copy everything from a specified drive over a network and also be able to attach the files to an email and send automatically at a scheduled time.