ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

遍历JPG文件,如何跳过“拒绝的权限”

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-5-17 08:53 | 显示全部楼层 |阅读模式
dd.jpg


  1. Sub ll()
  2.     Dim Sht As Worksheet, Rng As Range
  3.         Set Sht = Sheet1
  4.         Set Sht = Sheet1
  5.         Sht.Cells.Clear
  6.         Sht.Cells.Font.Size = 9
  7.         Set Rng = Sht.Cells(1, 2)
  8.         TraverserJPG Rng, "D:"
  9. End Sub

  10. Function TraverserJPG(Rng As Range, FolderPath)
  11.    ''
  12.     'Debug.Print Rng.Address
  13.         ''
  14.     Dim FSO As Scripting.FileSystemObject
  15.     Dim oFile As File, oFilesAs As Files
  16.     Dim oFolder As Folder
  17.     Dim Img As WIA.ImageFile
  18.     Dim oDate As Date
  19.     Dim Rr, Cc
  20.     Dim Str
  21.    
  22.         Set Img = New WIA.ImageFile
  23.         ''
  24.         Rr = Rng.Row + 2
  25.         Cc = 1
  26.         Set FSO = New Scripting.FileSystemObject
  27.         Set oFolder = FSO.GetFolder(FolderPath)
  28.         ''
  29.         For Each oFile In oFolder.Files
  30.             '
  31.             With Rng
  32.                If InStr(oFile.Name, "JPG") > 0 Then
  33.                    Img.LoadFile oFile.Path
  34.                    Debug.Print Rng(Rr, 1).Address, Rng.Parent.Name,
  35.                    Rng(Rr, 1) = oFile.Name
  36.                    Debug.Print oFile.Name, oFile.Path
  37.                    Rng(Rr, 2) = oFile.DateLastModified
  38.                    Rng(Rr, 3) = Img.Width
  39.                    Rng(Rr, 4) = Img.Height
  40.                    Rng(Rr, 5) = Format(Int(oFile.Size / 1024), "0,000")
  41.                    Rng(Rr, 6) = ThisWorkbook.Path & "" & oFile.Name
  42.                    Rr = Rr + 1
  43.                End If
  44.             End With
  45.         Next oFile
  46.         ''
  47.         For Each oFolder In oFolder.SubFolders
  48.              TraverserJPG Rng(Rr, 1), oFolder.Path
  49.         Next oFolder
  50. End Function
  51. ''


复制代码


TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-17 20:00 | 显示全部楼层
用Dir方法遍历JPG文件,解决问题。



  1. Sub TraveJPGinDisk()
  2.     Dim Img As WIA.ImageFile
  3.         Set Img = New WIA.ImageFile
  4.     Dim Fso As Scripting.FileSystemObject
  5.         Set Fso = New Scripting.FileSystemObject
  6.     Dim oFile As File
  7.     With Sheet2.Cells
  8.          .Clear
  9.          .Font.Size = 8
  10.          .ColumnWidth = 5
  11.     End With
  12.     With Sheet3.Cells
  13.           .Clear
  14.           .Font.Size = 8
  15.           .ColumnWidth = 6
  16.     End With
  17.     Dim MyName, MyFileName
  18.     Dim Ke, ii, Cc
  19.     T = Time
  20.     Dim Dic As Dictionary, Did As Dictionary
  21.     Set Dic = New Dictionary
  22.     Set Did = New Dictionary
  23.     Dic.Add ("D:"), ""
  24.     i = 0
  25.     Do While i < Dic.Count
  26.         Ke = Dic.Keys
  27.         MyName = Dir(Ke(i), vbDirectory)    '查找目录
  28.         Do While MyName <> ""
  29.             If MyName <> "." And MyName <> ".." Then
  30.                 If (GetAttr(Ke(i) & MyName) And vbDirectory) = vbDirectory Then
  31.                     Dic.Add (Ke(i) & MyName & ""), ""
  32.                 End If
  33.             End If
  34.             MyName = Dir
  35.         Loop
  36.         i = i + 1
  37.     Loop
  38.     ii = 5
  39.     For Each Ke In Dic.Keys
  40.          'Debug.Print Ke
  41.          Sheet3.Cells(ii, 3) = Ke
  42.          ii = ii + 1
  43.     Next Ke
  44.    
  45.     For Each Ke In Dic.Keys
  46.         MyFileName = Dir(Ke & "*.JPG")
  47.         Do While MyFileName <> ""
  48.             Did.Add (Ke & MyFileName), ""
  49.             MyFileName = Dir
  50.         Loop
  51.     Next
  52.     ii = 5
  53.     Cc = 1
  54.     For Each Ke In Did.Keys
  55.           With Sheet2
  56.               If InStr(Ke, ":") > 0 Then
  57.                   Set oFile = Fso.GetFile(Ke)
  58.                   'Debug.Print oFile.Name
  59.                   Img.LoadFile Ke
  60.                   Debug.Print oFile.DateLastModified
  61.                   .Cells(ii, Cc + 1) = oFile.Name
  62.                   .Cells(ii, Cc + 2) = Img.Width
  63.                   .Cells(ii, Cc + 3) = Img.Height
  64.                   .Cells(ii, Cc + 4) = Format(oFile.Size, "0,000")
  65.                   .Cells(ii, Cc + 5) = oFile.DateLastModified
  66.                   .Cells(ii, Cc + 10) = Ke
  67.                   ii = ii + 1
  68.               End If
  69.           End With
  70.     Next Ke
  71.    
  72.     TT = Time - T
  73.     Debug.Print Minute(TT) & "分" & Second(TT) & "秒"
  74. End Sub
复制代码


您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 10:45 , Processed in 0.031931 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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