One would think that performing this task would not be so obscure! I mean come on -- all you need is a "/n" option as well as a "/y" option to automatically say "no" to over-write! I am in the same boat -- I need to copy only files that do not already exist (not files that are newer). I also cannot rely on the time stamps as suggested with /XO /XN.
Some wiseguy will want to know why...so here it is for those who cannot wrap their heads around a real-world scenario for this need...
We have a company-wide images directory that is synchronized across all office servers. Users are clueless about proper picture sizing, so they drop original size images into this directory from the camera. Generally images are used in proposal documents. So what we need to do is copy the original high-res images to a non-synchronized area for marketing to use (in case they need to produce a poster or other large-format printout). We then run a tool that automatically resizes images in the synchronized folders to something reasonable for use in normal documents.
Right now the process is very manual, involving multiple copies. I submit it here only because I know this works (even though it is a PITA). Note that these steps could be easily batched...we don't batch it because we want to verify results at each stage.
Folder A = source location to pull "new" files from
Folder B = destination location to copy only files that do not exist into
1) Copy Folder A to temp folder
2) Copy folder B to temp folder, overwriting any matching file names in temp folder
3) Rename folder B to backup folder
4) Rename temp folder to folder b
Ugg! But it works perfectly to achieve the end result of "copy only files that do not already exist".