I've also used xxcopy which is xcopy on steroids.
--- Chris Davis <[EMAIL PROTECTED]> wrote: > There is a good gui for it as well, google robocopy > gui > > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of John Gunvaldson > Sent: 02 November 2007 16:59 > To: ProFox Email List > Subject: RE: [NF] MS DOS Batch File > > <<<< > Any suggestions gratefully received! > >>>> > > Forget xCopy - when it fails, it has no restart > capabilities. Robocopy > from the Windows Resource Kit (free download) has a > much superior method > of cloning folders - using its "Mirror" "/MIR" > syntax, for example... > > Hth, > > John C. Gunvaldson > www.fox-net.com > > > :: ========================================== > @echo off > @cls > goto robocopy_files > > :robocopy_files > @cls > @echo. > @echo ## Standby, synchronizing the landing zones > (both 01 and 02)... > @c:\myworkserver\synch\robocopy c:\lpftp\ > \\myserver_01\lz\ *.* /MIR /E > /Z /XO /W:10 /TBD /V /ETA > @c:\myworkserver\synch\robocopy c:\lpftp\ > \\myserver_02\lz\ *.* /MIR /E > /Z /XO /W:10 /TBD /V /ETA > :: @pause > @goto finished > > :finished > @echo. > @echo ## Finished, hit any key to quit.... > @echo. > @pause > @cls > > > [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

