xcopy "copies only files that don't already exist on destination" - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:41:37Zhttp://stackoverflow.com/feeds/question/247535http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247535/xcopy-copies-only-files-that-dont-already-exist-on-destination3xcopy "copies only files that don't already exist on destination"Will2008-10-29T16:46:48Z2009-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#2475532Answer by Daok for xcopy "copies only files that don't already exist on destination"Daok2008-10-29T16:51:01Z2008-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#2475550Answer by Andy for xcopy "copies only files that don't already exist on destination"Andy2008-10-29T16:51:09Z2008-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#2475751Answer by cfeduke for xcopy "copies only files that don't already exist on destination"cfeduke2008-10-29T16:56:03Z2008-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&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#2477102Answer by Andrew Cowenhoven for xcopy "copies only files that don't already exist on destination"Andrew Cowenhoven2008-10-29T17:38:40Z2008-10-29T17:38:40Z<p>Old fashioned? Try this:</p>
<pre><code>C:\>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#7892860Answer by Matt for xcopy "copies only files that don't already exist on destination"Matt2009-04-25T16:40:05Z2009-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>