Describe function here.
def CopyFile(src,dst): src=os.path.realpath(src) dst=os.path.realpath(dst) if src==dst or not os.path.isfile(src): return CreateDirectory(os.path.dirname(dst)) shutil.copyfile(src, dst)