I am using a batch file to copy a database backup file using robocopy (on Windows 7/2008) and need to restore (with replace) the database only after the backup file is really changed (not skipped by robocopy).

robocopy \\server\share . foo.bak /TBD /NP

Tried testing errorlevel but it doesn't help. Anyone has some suggestion to achieve such objective?

Thanks.

link|improve this question
feedback

migrated from stackoverflow.com Feb 13 '10 at 7:15

This question came from our site for professional and enthusiast programmers.

1 Answer

A bit inelegant I admit, but write a log file and then parse it?

link|improve this answer
Not at all inelegant. Robocopy has a number of options for logging: ss64.com/nt/robocopy.html – jscott Feb 13 '10 at 13:22
+1. Exactly, use Robocopy's logging options. – joeqwerty Feb 13 '10 at 14:25
feedback

Your Answer

 
or
required, but never shown