Excel VBA:如何读取 PDF 类型的文件名并将其吐入工作表上的列中

发布于 2024-10-29 05:03:46 字数 78 浏览 4 评论 0原文

在 Excel 2003 中,有没有办法从单个目录中读取 pdf 文件名并将其放入 Excel 电子表格中?

In Excel 2003 is there any way to read pdf file names from a single directory and put them inside an Excel spreadsheet?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏日落 2024-11-05 05:03:46
Dim c as Range, tmp  
Dim FolderPath as string

FolderPath = "C:\MyFolder\" 
Set c = ActiveSheet.Range("A1")

tmp = Dir(FolderPath & "*.pdf")
Do While tmp<>""
  c.value = tmp
  set c = c.offset(1,0)  
  tmp=Dir()
Loop

蒂姆

Dim c as Range, tmp  
Dim FolderPath as string

FolderPath = "C:\MyFolder\" 
Set c = ActiveSheet.Range("A1")

tmp = Dir(FolderPath & "*.pdf")
Do While tmp<>""
  c.value = tmp
  set c = c.offset(1,0)  
  tmp=Dir()
Loop

Tim

暗恋未遂 2024-11-05 05:03:46

要列出文件夹中的文件,请查看 文件系统对象

向操作系统提供有关您需要的更多信息,我们将更好地为您提供帮助。

参考值

To list files from a folder take a look at FileSystemObject.

Provide os more info about what you need, we'll help you better.

Rgds

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文