xcopy "copies only files that don't already exist on destination" - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T21:41:37Z http://stackoverflow.com/feeds/question/247535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination 3 xcopy "copies only files that don't already exist on destination" Will 2008-10-29T16:46:48Z 2009-04-25T16:40:05Z <p>Does anyone know how to do this?</p> <p>I can copy only files that DO exist on the destination, but not the other way around... any ideas?</p> <p><strong>More information</strong></p> <ul> <li>I have 3 gigs of files on System A.</li> <li>I have 4 gigs of files on System B.</li> <li>Many of the files are the same</li> <li>I only want to copy the files from System B to System A that don't already exist on system A.</li> </ul> <p>Thanks!</p> http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination/247553#247553 2 Answer by Daok for xcopy "copies only files that don't already exist on destination" Daok 2008-10-29T16:51:01Z 2008-10-29T16:51:01Z <p>If it's Vista, you can use RoboCopy and exclude (/XF) that is matching.</p> <p>To see all option go in cmd.exe and type robocopy /?</p> http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination/247555#247555 0 Answer by Andy for xcopy "copies only files that don't already exist on destination" Andy 2008-10-29T16:51:09Z 2008-10-29T16:51:09Z <p>You can also try to use RoboCopy's mirror feature instead? Handles folder as well.</p> <p>see <a href="http://www.lukemiller.org/journal/2007/08/mirror-files-with-robocopy.html" rel="nofollow">http://www.lukemiller.org/journal/2007/08/mirror-files-with-robocopy.html</a></p> <p>//Andy</p> http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination/247575#247575 1 Answer by cfeduke for xcopy "copies only files that don't already exist on destination" cfeduke 2008-10-29T16:56:03Z 2008-10-29T16:56:03Z <p>You may want to give <a href="http://en.wikipedia.org/wiki/Robocopy" rel="nofollow">robocopy</a> a shot. Don't worry, its already installed on Vista and Server 2008 and its <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;displaylang=en" rel="nofollow">free for XP and Server 2003</a>. There is a sync mode that will keep directories in sync</p> <p>There's also a <a href="http://technet.microsoft.com/en-us/magazine/cc160891.aspx" rel="nofollow">GUI for it</a>.</p> http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination/247710#247710 2 Answer by Andrew Cowenhoven for xcopy "copies only files that don't already exist on destination" Andrew Cowenhoven 2008-10-29T17:38:40Z 2008-10-29T17:38:40Z <p>Old fashioned? Try this:</p> <pre><code>C:\&gt;xcopy c:\temp\testcopy\source c:\temp\testcopy\target /e /d </code></pre> <p>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.</p> http://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination/789286#789286 0 Answer by Matt for xcopy "copies only files that don't already exist on destination" Matt 2009-04-25T16:40:05Z 2009-04-25T16:40:05Z <p>Just use /XN /XO to ignore newer or older files and it will just copy files which dont exist already, simple!</p>