Robocopy to multiple destinations
is it possible and safe to copy from one source to multiple destinations with Robocopy?
I mean, something like this in a bat file:
ROBOCOPY source dest_1
ROBOCOPY s开发者_如何学JAVAource dest_2
Is there any side effect?
Thanks!
Yup, go right ahead. This is exactly the sort of thing robocopy is good at.
This might be of help: http://robomojo.codeplex.com
It's a free and open source shell for Robocopy. It lets you set up "tasks" (i.e: a single Robocopy command) and combine them into "Jobs" (multiple tasks) which run in sequence.
Note that this will not work if you are using the /mon
option.
精彩评论