0

我正在用 vb 编写,并使用 excels 参数将 .xls 文档转换为 pdf。该过程运行良好,因为我使用的是字符串。我需要知道的是以某种方式遍历源文件夹,然后将该文件夹中的所有文件转换为 pdf 并放入保留原始文件名的导出文件夹中。循环是我在编程中存在的严重障碍,尽管我知道你需要它来为这个行业打下坚实的基础。

例子:

    Dim excelApplication As ApplicationClass = New ApplicationClass()
    Dim excelWorkbook As Workbook = Nothing
    Dim paramSourceBookPath As String = "C:\My_Projects\Testing\filename.xls"
    Dim paramExportFilePath As String = "C:\My_Projects\Testing\filename.pdf"

提前致谢。

4

1 回答 1

0

尝试这个:

    Dim dir As New IO.DirectoryInfo(path)
    Dim files As IO.FileInfo() = dir.GetFiles("*.xls")
    For Each file In files
        'Do Something
    Next
于 2012-06-29T00:54:39.233 回答