- 精华
- 活跃值
-
- 积分
- 95
- 违规
-
- 印币
-
- 鲜花值
-
- 在线时间
- 小时
累计签到:15 天 连续签到:2 天
|
发表于 2025-1-8 16:57:55
|
显示全部楼层
保存为VBS后食用
- On Error Resume Next
- Const wdExportFormatPDF = 17
- Set oWord = WScript.CreateObject("Word.Application")
- Set fso = WScript.CreateObject("Scripting.Filesystemobject")
- Set fds=fso.GetFolder(".")
- Set ffs=fds.Files
- For Each ff In ffs
- If (LCase(Right(ff.Name,4))=".doc" Or LCase(Right(ff.Name,4))="docx" ) And Left(ff.Name,1)<>"~" Then
- Set oDoc=oWord.Documents.Open(ff.Path)
- odoc.ExportAsFixedFormat Left(ff.Path,InStrRev(ff.Path,"."))&"pdf",wdExportFormatPDF
- If Err.Number Then
- MsgBox Err.Description
- End If
- End If
- Next
- odoc.Close
- oword.Quit
- Set oDoc=Nothing
- Set oWord =Nothing
- MsgBox "Word文件已全部轩换为PDF格式!"
复制代码 |
1
赠人玫瑰,手有余香!如单纯感谢,请送花!凡是以文字形式感谢,即被视为水帖,会扣币处理!
鲜花榜单
-
+1
对你表示感谢!
|