使用BAT从网络共享复制

时间:2008-09-05 19:17:15

标签: windows batch-file

使用Windows批处理文件将文件从网络共享复制到本地文件系统的最佳方法是什么?通常情况下,我会使用“net use *”但是使用这种方法我怎样才能获得驱动器号?

3 个答案:

答案 0 :(得分:14)

你能使用文件的完整UNC路径吗?

copy \\myserver\myshare\myfolder\myfile.txt c:\myfiles

答案 1 :(得分:1)

您可以指定net use的驱动器号。将其放在命令提示符中以获取更多信息:

net use /?

答案 2 :(得分:0)

您还可以使用xcopyrobocopy

xcopy "\\server\share\path" "destination"
robocopy "\\server\share\path" "destination"