无法在Windows批处理脚本中复制文件

时间:2011-06-08 20:19:20

标签: windows-xp batch-file cmd dos

在Windows XP中,我希望它将匹配模式selenium*.jar的唯一文件复制到本地目录。

我试过了:

pushd \\remote.mydomain.com\selenium\
FOR %f IN (selenium*.jar) DO copy %f C:\selenium

其中\\remote.mydomain.com是共享目录,其内容托管在远程服务器上。

但我收到错误:

C:\selenium>pushd \\remote.mydomain.com\selenium\
f was unexpected at this time.

1 个答案:

答案 0 :(得分:2)

在脚本中将%f替换为%%f%f仅在您直接在命令提示符处输入命令时才有效,但不在批处理文件中。在命令行上键入help for会向您显示第二段中描述此行为的手册。