使用Windows批处理文件将文件从网络共享复制到本地文件系统的最佳方法是什么?通常情况下,我会使用“net use *”但是使用这种方法我怎样才能获得驱动器号?
答案 0 :(得分:14)
你能使用文件的完整UNC路径吗?
copy \\myserver\myshare\myfolder\myfile.txt c:\myfiles
答案 1 :(得分:1)
您可以指定net use
的驱动器号。将其放在命令提示符中以获取更多信息:
net use /?
答案 2 :(得分:0)
您还可以使用xcopy
和robocopy
:
xcopy "\\server\share\path" "destination"
robocopy "\\server\share\path" "destination"