如何使用 Robocopy 复制网络文件?
gyanesh
问问题
126451 次
2 回答
36
我使用以下格式并且效果很好。
robocopy \\SourceServer\Path \\TargetServer\Path filename.txt
复制您可以替换filename.txt
的所有内容*.*
,还有很多其他开关可以复制子文件夹等......请参见此处:http ://ss64.com/nt/robocopy.html
于 2012-11-18T15:00:16.887 回答
1
您应该能够将 Windows“UNC”路径与 robocopy 一起使用。例如:
robocopy \\myServer\myFolder\myFile.txt \\myOtherServer\myOtherFolder
Robocopy 能够自动从某些类型的网络故障中恢复。
于 2009-06-23T05:24:32.123 回答