By using the code below, I am getting the directory from the source to the destination. However, the time of the destination directory and the source is changed.
import os,time,os.path,shutil
shutil.copytree(sourceFolderPath, destinationFolderPath)
I would like to copy the source directory with their time stamp. Any ideas?