ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
12
返回列表 发新帖
楼主: eh蝴蝶效应

[求助] 批量提取某个文件夹下的全部word文件名及页面

[复制链接]

TA的精华主题

TA的得分主题

发表于 2014-11-5 11:32 | 显示全部楼层
以下代码使用shell.application获取word文档页数,可能会不准
可靠的方式要区分新旧文件格式:
对旧文件格式,doc等,要使用复合文档技术
用复合文档API StgOpenStorage和IPropertySetStorage读Page Count属性
对新文件格式,docx等,要使用xml读取技术
Open XML SDK打开文件之后读ExtendedFilePropertiesPart.Properties.Pages属性
但是实际对于新文件格式还可以直接解压获取文件中的app.xml文件,内有<Pages>xx</Pages>标签
  1. Function GetPagesCount(ByVal flPath As String) As Integer
  2. Dim fso As Object, fl As Object, shl As Object
  3. Dim fdPath$, flName$, i&, shfd As Object
  4. Set fso = CreateObject("Scripting.FileSystemObject")
  5. Set fl = fso.GetFile(flPath)
  6. fdPath = fl.ParentFolder.Path
  7. flName = fl.Name
  8. Set shl = CreateObject("Shell.Application")
  9. Set shfd = shl.NameSpace(fdPath)
  10. For i = 0 To 300
  11.     If Left(shfd.GetDetailsOf(0, i), 1) = "页" Then  'XP中为"页数",Win7中为"页码范围",所有直接查找"页"
  12.         GetPagesCount = shfd.GetDetailsOf(shfd.Items.Item(flName), i)
  13.         Exit Function
  14.     End If
  15. Next i
  16. End Function

  17. Sub 遍历获取页数()
  18. Application.ScreenUpdating = False
  19. Dim fso As Object, objFolder As Object, ws As Object, Ext$, srcfolder$, dstfolder$, arr, aMsg
  20. Dim aDic As Object, wdApp As Word.Application, strTemp$, aNum&, pgCount&, aPage&
  21. Set wdApp = CreateObject("Word.Application")
  22. Set fso = CreateObject("Scripting.FileSystemObject")
  23. Set ws = CreateObject("WScript.Shell")
  24. Set aDic = CreateObject("Scripting.Dictionary")
  25. srcfolder = "C:\Documents and Settings\Administrator\桌面\新建文件夹"
  26. ws.Run Environ$("comspec") & " /c dir " & Chr(34) & srcfolder & "\*.doc" & Chr(34) & " /s /b /a:-d > C:\tmpDoc.txt", 0, True '遍历获取Word文件,并列表到临时文件
  27. aNum = FreeFile()
  28. Open "C:\tmpDoc.txt" For Input As #aNum
  29.     arr = Split(StrConv(InputB(LOF(aNum), aNum), vbUnicode), vbCrLf) '将遍历结果从文件读取到数组中
  30. Close #1
  31. ws.Run Environ$("comspec") & " /c del /q /s " & Chr(34) & "C:\tmpDoc.txt" & Chr(34), 0, True '删除临时文件
  32. For i = LBound(arr) To UBound(arr) - 1
  33.     If Left(fso.getfilename(arr(i)), 2) <> "~$" Then    '排除临时文件
  34.         aPage = GetPagesCount(arr(i))
  35.         pgCount = pgCount + aPage
  36.         strTemp = strTemp & aPage & vbTab & arr(i) & Chr(13)
  37.     End If
  38. Next i
  39. aNum = FreeFile()
  40. Open "C:\PageCount.txt" For Output As #aNum
  41.     Print #aNum, strTemp
  42. Close #aNum
  43. Set fso = Nothing '销毁fso对象,释放内存
  44. Set ws = Nothing '销毁Shell对象,释放内存
  45. MsgBox "统计总页数完毕,总页数:" & pgCount & vbCrLf & "C:\PageCount.txt为统计结果"
  46. Application.ScreenUpdating = True
  47. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2015-6-19 11:06 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
好东西  先收下先,不然怕找不到

TA的精华主题

TA的得分主题

发表于 2015-6-19 17:28 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
一个不同打开文档的方案。但是有时候可能不一定准确。。。参考
  1. Function GetPagesCount(flPath As String) As Integer
  2. Dim fso As Object, fl As Object, shl As Shell32.Shell
  3. Dim fdPath$, flName$, i&, shfd As Shell32.Folder
  4. Set fso = CreateObject("Scripting.FileSystemObject")
  5. Set fl = fso.GetFile(flPath)
  6. fdPath = fl.ParentFolder.Path
  7. flName = fl.Name
  8. Set shl = New Shell
  9. Set shfd = shl.NameSpace(fdPath)
  10. For i = 0 To 300
  11.     If Left(shfd.GetDetailsOf(0, i), 1) = "页" Then  'XP中为"页数",Win7中为"页码范围",所有直接查找"页"
  12.         GetPagesCount = shfd.GetDetailsOf(shfd.Items.Item(flName), i)
  13.         Exit Function
  14.     End If
  15. Next i
  16. End Function
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2022-10-18 16:50 | 显示全部楼层
daocao2003 发表于 2014-10-30 20:01
其实,建议楼主安装total commander,它里面提供了查看office文档的功能,太强大了,效果如下图,显示的结 ...

回看八年前的帖子,发现自己退步了。大咖熟悉Directory OPus吗?也是一款类似total command的软件。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-22 20:55 , Processed in 0.025191 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表