Does robocopy automatically keep copying if an error occurs?

  • Thread starter Thread starter Nocturnal
  • Start date Start date
N

Nocturnal

Like with xcopy you can use the /c switch to keep going even if errors are
encountered. Is there a switch for robocopy or does it by default keep
going if an error is detected?

--
 
I don't use robocopy, but this lik might help you out:
http://www.ss64.com/nt/robocopy.html

this might be what your looking for:
/R:n : number of Retries on failed copies - default is 1 million.
/W:n : Wait time between retries - default is 30 seconds.

so i assume you can use /R:1 /W:1 and this will just continue on right away
when an error has been is detected. hope this helps....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top