On Sat, 14 Jan 2012 19:55:22 -0500, FontLeroy <
font-...@hotmail.com>
put finger to keyboard and composed:
>if the file DOES exist in the destination folder, I would like that
>file to be moved to a folder we'll call for now DUPES.
>
>If the file does NOT already exist in the destination folder, it
>should be moved there.
You could use the "IF EXIST" or "IF NOT EXIST" batch commands.
IF [NOT] EXIST filename command
Type "IF /?" at the DOS prompt for the syntax.
Example:
if not exist product.dat echo Can't find data file
- Franc Zabkar
--
Please remove one 'i' from my address when replying by email.