Foxtable(狐表)用户栏目专家坐堂 → 把指定文件中的所有word文档转化为pdf


  共有2330人关注过本帖树形打印复制链接

主题:把指定文件中的所有word文档转化为pdf

帅哥哟,离线,有人找我吗?
qaz17909
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:四尾狐 帖子:802 积分:9093 威望:0 精华:0 注册:2017/1/26 14:38:00
把指定文件中的所有word文档转化为pdf  发帖心情 Post By:2019/2/27 23:01:00 [只看该作者]

我有个文件夹,里面全部为word文档,想全部转化为pdf,代码如下,报错是什么原因?

Dim dlg As New FolderBrowserDialog
If dlg.ShowDialog = DialogResult.Ok Then
    For Each File As String In FileSys.GetFiles(dlg.SelectedPath)
        Dim rs As String = File.SubString(0,File.Length-4)
        Dim tg As String = rs & ".pdf"
        Dim app As New MSWord.Application
        try
            Dim doc = app.Documents.Open(File)
            doc.ExportAsFixedFormat(tg, MSWord.WdExportFormat.wdExportFormatPDF)
            doc.saved = True
            app.Quit
        catch ex As exception
            msgbox(ex.message)
            app.Quit
        End try
    Next
End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/27 23:19:00 [只看该作者]

我测试代码没问题。你的报什么错?

 

要注意,你文件夹下,要全部是doc文件,不能有别的文件,不然肯定报错。

 

或者,你判断一下后缀是不是doc文件,如

 

Dim dlg As New FolderBrowserDialog
If dlg.ShowDialog = DialogResult.Ok Then
    For Each File As String In FileSys.GetFiles(dlg.SelectedPath)
        If file.EndsWith(".doc") OrElse file.EndsWith(".docx") Then
            Dim rs As String = File.SubString(0,File.Length-4)
            Dim tg As String = rs & ".pdf"
            Dim app As New MSWord.Application
            try
                Dim doc = app.Documents.Open(File)
                doc.ExportAsFixedFormat(tg, MSWord.WdExportFormat.wdExportFormatPDF)
                doc.saved = True
                app.Quit
            catch ex As exception
                msgbox(ex.message)
                app.Quit
            End try
        End If
    Next
End If


 回到顶部