批处理文件不起作用


0

我试图在Windows Server 2012上的批处理文件中运行一些命令,但它无法正常工作。我在这做什么从循环中的当前目录获取所有文件(.docx),将文件转换为pdf并移动到其他文件夹。

cls
@ECHO ON

for  %%i in (*.docx) do  
    soffice  /-Y --headless --convert-to pdf %%i
    MOVE /-y C:\xxx\xxx\xxx\results\*.pdf   "C:\xxx\xxx\xx-xx\results\pdf"

任何人都可以帮我解决这个问题吗?

谢谢,


1
那是你的实际代码吗? FOR块的括号在哪里?
Michael Harvey

哦,我错过了..这只是这个问题吗?
Zubair Sultan

1
你试过吗?
Michael Harvey

是的。感谢Micheal指出
Zubair Sultan

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.