2011-06-08 41 views
1

在Windows XP中,我希望它將與模式selenium*.jar匹配的唯一文件複製到本地目錄。在Windows批處理腳本中複製文件時出現問題

我曾嘗試:

其中
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. 

回答

2

替換%f在你的腳本%%f%f僅在直接在命令提示符處輸入命令但不在批處理文件中時起作用。然後在命令行鍵入help for向您顯示第二段中描述此行爲的手冊。