@ECHO OFF
Set LOG="C:\Temp\Copy.log"
::########################
:: Begin copying
::########################
Set Sourcedir="c:\data\PRODDB\dir"
Set Targetdir="C:\test"
Echo %date% %time%: "Copying from %sourcedir% to %Targetdir%" >> %LOG%
Forfiles /P "%Sourcedir%" /D +0 /C "cmd /c copy @path "%Targetdir%" >> %LOG%
当我执行上述脚本时,我收到以下错误错误:无效的参数/选项 - '>>'。输入“FORFILES /?” 供使用。这里可能是什么问题?谢谢