标题: [文件操作] pdftk批处理怎样合并不同目录下的PDF文件? [打印本页]
作者: recheazeng 时间: 2023-8-8 08:11 标题: pdftk批处理怎样合并不同目录下的PDF文件?
各位高手,我要实现自动PDF合并功能,需要用到pdftk的批处理,假定现在我有三个PDF文件需要合并,分别在不同目录下面,A.pdf在C:\Users\reche\Desktop\test\公共 路径下,B.pdf在C:\Users\reche\Desktop\test\生成 路径下,C.pdf在C:\Users\reche\Desktop\test\概算 路径下,合并后的文件名为D..pdf放在C:\Users\reche\Desktop\test\合并PDF 路径下。请高手帮忙修改一下下面的批处理语句,谢谢!- @echo off
- cd "C:\Users\reche\Desktop\test"
- pdftk "C:\Users\reche\Desktop\test\公共\A.pdf" "C:\Users\reche\Desktop\test\生成\B.pdf" "C:\Users\reche\Desktop\test\概算\C.pdf" cat output "C:\Users\reche\Desktop\test\合成PDF\D.pdf"
复制代码
作者: Five66 时间: 2023-8-8 13:13
看不懂,你的批处理不行么?还有改成啥?
作者: recheazeng 时间: 2023-8-8 14:20
回复 2# Five66
是的,批处理不行
作者: 77七 时间: 2023-8-8 14:33
本帖最后由 77七 于 2023-8-8 15:08 编辑
D..pdf放在C:\Users\reche\Desktop\test\合并PDF 路径下
pdftk "C:\Users\reche\Desktop\test\公共\A.pdf" "C:\Users\reche\Desktop\test\生成\B.pdf" "C:\Users\reche\Desktop\test\概算\C.pdf" cat output "C:\Users\reche\Desktop\test\合成PDF\D.pdf"
是否有笔误?
另外,把批处理保存为ansi编码格式。
如果pdftk.exe在test目录下,批处理文件不在c盘,需要使用cd /d 切换目录。
作者: Five66 时间: 2023-8-8 15:12
回复 3# recheazeng
在原来批处理后面加上一行pause,再次运行看有啥提示
作者: Batcher 时间: 2023-8-9 15:14
回复 1# recheazeng
请参考Q-04把bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA- @echo off
- REM 1、下载并安装 PDFtk 这个命令行工具
- REM http://bcn.bathome.net/s/tool/index.html?key=PDFtk
- REM 2、根据自己电脑实际安装路径设置以下临时环境变量
- set "path=C:\Program Files (x86)\PDFtk Server\bin;%path%"
-
- set "NewFolder=C:\Users\reche\Desktop\test\合并PDF"
- if not exist "%NewFolder%" (
- md "%NewFolder%"
- )
- pdftk.exe "C:\Users\reche\Desktop\test\公共\A.pdf" "C:\Users\reche\Desktop\test\生成\B.pdf" "C:\Users\reche\Desktop\test\概算\C.pdf" cat output "%NewFolder%\D.pdf"
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |