请在 Robocopy 中给出我应该用来将文件从主服务器复制到辅助服务器的命令
我在 robocopy 中得到了如下所述的命令
ROBOCOPY Source Destination [file…[file]…..] [Options]
Source: Source Directory 目的地:目的地目录 文件:要复制的文件。
请告诉我们“\server\share\path”是什么意思? 请为我提供有关此命令语法的示例并进行解释
I got the command in robocopy as mentioned below
ROBOCOPY Source Destination [file…[file]…..] [Options]
Source: Source Directory
Destination: Destination Directory
Files: files to copy .
Please let us know what does the "\server\share\path" means? Kindly provide me an example on this command syntax and explain
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ROBOCOPY 调用的示例如下:
这会将
C:\Users
下的所有内容复制到 UNC 路径\\SERVER\backup
处的网络共享。 如果您不知道这意味着什么,google 查找“UNC 路径”或者找到一个很好的教程,解释如何在 Windows 下设置网络共享。您可以完全自由地使用
H:\
之类的内容复制到本地驱动器(例如 USB 设备),而不是复制到远程计算机的\\SERVER\backup
储存设备。/MIR /R:0 /W:0
部分是 ROBOCOPY 的选项。 调用ROBOCOPY /?
获取对此的解释。干杯,
An example of a ROBOCOPY call would be
This copys everything under
C:\Users
to a network share at the UNC path\\SERVER\backup
. If you don't know, what that means, google for 'UNC path' or find a nice tutorial that explains how to setup network shares under Windows.Instead of
\\SERVER\backup
, that copies to a remote machine, you are totally free to use something likeH:\
to copy to a local drive like a USB mass storage device.The part
/MIR /R:0 /W:0
are options of ROBOCOPY. CallROBOCOPY /?
to get an explanation for these.Cheers,