Im trying to copy files from a folder using
FileCopy($Source & "*.*,$Dest",8)
Since the source folder has huge files and every hour new files gets added, i wanted to copy only the newer files (not present in the destination directory)
I don't want to use overwrite(9) option to avoid unwanted copying.
But if I don't use the overwrite filecopy stops updating new files (guess it stops the moment it finds an source file existing on destination directory)
Is there any other built-in function that just skips overwriting and still copies the new files???
Thanks in advance.