下面是我尝试执行的脚本,但是在双击批处理文件后,它会打开命令窗口,并且命令提示符将立即消失。
CD /D C:\RAJA_WORKSPACE\NTLePrismAutomation\NTLePrismAutomation\ePrismReports\
for /f "eol=: delims=" %F in ('dir /b /od *.html') do @set "newest=%F"
"%newest%"
答案 0 :(得分:2)
CD /D C:\RAJA_WORKSPACE\NTLePrismAutomation\NTLePrismAutomation\ePrismReports\
for /f "eol=: delims=" %%F in ('dir /b /od *.html') do @set "newest=%%F"
"%newest%"
虽然我认为你不需要eol
选项。对于%
令牌,批处理文件需要加倍for
,而在命令提示符中,它们必须是单个。