up vote 9 down vote favorite
2
share [g+] share [fb]

Does anyone know how to do this?

I can copy only files that DO exist on the destination, but not the other way around... any ideas?

More information

  • I have 3 gigs of files on System A.
  • I have 4 gigs of files on System B.
  • Many of the files are the same
  • I only want to copy the files from System B to System A that don't already exist on system A.

Thanks!

link|improve this question
What is your OS? Vista, XP? – Daok Oct 29 '08 at 16:48
This is a duplicate of stackoverflow.com/questions/4228807/copy-files-w-o-overwrite – hwiechers Jul 24 '11 at 17:57
feedback

10 Answers

up vote 8 down vote accepted

If it's Vista, you can use RoboCopy and exclude (/XF) that is matching.

To see all option go in cmd.exe and type robocopy /?

link|improve this answer
Nice little Gem... It's not vista but windows 2003 server and I appear to have it. Thanks! – Kevin Dente Oct 29 '08 at 17:00
Robocopy is available as part of the free download microsoft.com/downloads/… for XP and above – Martin Beckett Oct 29 '08 at 17:12
feedback

Old fashioned? Try this:

C:\>xcopy c:\temp\testcopy\source c:\temp\testcopy\target /e /d

It will copy the files that don't exist on the target. It will also copy the files that are newer on the source than the target.

link|improve this answer
feedback

You may want to give robocopy a shot. Don't worry, its already installed on Vista and Server 2008 and its free for XP and Server 2003. There is a sync mode that will keep directories in sync

There's also a GUI for it.

link|improve this answer
feedback

You can also try to use RoboCopy's mirror feature instead? Handles folder as well.

see http://www.lukemiller.org/journal/2007/08/mirror-files-with-robocopy.html

//Andy

link|improve this answer
feedback

Yes, very bad thing I ended up with

  1. copying the existing files to a backup directory
  2. executing the original xcopy with /Y
  3. copying the backup directory back to where it belongs also with /y
  4. remove backup

Welcome to Microsoft

link|improve this answer
feedback

Just use /XN /XO to ignore newer or older files and it will just copy files which dont exist already, simple!

link|improve this answer
feedback

It would really be nice if xcopy or robocopy just had an option to not overwrite existing files. Frequently this operation is done on files where we have to retain the original file date stamp on the destination files which negates using the date stamp as the decision factor.

In this case though it seems xcopy source destination /E /D does seem to work as matching time stamps seem to be skipped.

/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.

link|improve this answer
feedback

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".

link|improve this answer
feedback

Skipping files that exists in the destination, is the default behavior of RoboCopy....
The parameters related to this are meant to be used if you want it to behave differently.

link|improve this answer
feedback

Create a text file called n.txt (can be whatever). This file should contain "n" followed by a return (crlf). This is quick and dirty, and basically answer the overwrite prompt with a "no".

xcopy source target /s/z/e < n.txt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown