Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to loop through the files of a directory using VBA (Excel 2010). In the loop, I will need the filename and the date at which the file was formatted.

I have coded the following which works fine if the folder has no more then 50 files, otherwise it is ridiculously slow (I need it to work with folders with >10000 files). The sole problem of this code is that the operation to look up file.name takes extremely much time.

Any alternatives? Thanks a lot in advance for all tips and hints!!

--My problem has been solved by the solution below using Dir in a particular way (20 seconds for 15000 files) and for checking the time stamp using the command FileDateTime. Taking into account another answer from below the 20 seconds are reduced to less than 1. THANKS TO BOTH!!--

Code that works but is waaaaaay too slow (15 seconds per 100 files):


Sub LoopThroughFiles()
   Dim MyObj As Object, MySource As Object, file As Variant
   Set MySource = MyObj.GetFolder("c:\testfolder\")
   For Each file In MySource.Files
      If InStr(file.name, "test") > 0 Then
         MsgBox "found"
         Exit Sub
      End If
   Next file
End Sub
share|improve this question

2 Answers

up vote 10 down vote accepted

Dir seems to be very fast.

Sub LoopThroughFiles()
    Dim MyObj As Object, MySource As Object, file As Variant
   file = Dir("c:\testfolder\")
   While (file <> "")
      If InStr(file, "test") > 0 Then
         MsgBox "found " & file
         Exit Sub
      End If
     file = Dir
  Wend
End Sub
share|improve this answer
Great, thank you very much. I do use Dir but I didn't know that you can use it that way also. In addition with the command FileDateTime my problem is solved. – FMan Apr 30 '12 at 8:24
1  
Still one question. I could severely improve the speed if DIR would loop starting with the most recent files. Do you see any way to do this? – FMan Apr 30 '12 at 9:04
1  
My latter question has been settled by the comment below from brettdj. – FMan Apr 30 '12 at 12:51

Dir takes wild cards so you could make a big difference adding the filter for test up front and avoiding testing each file

Sub LoopThroughFiles()
    Dim StrFile As String
    StrFile = Dir("c:\testfolder\*test*")
    Do While Len(StrFile) > 0
        Debug.Print StrFile
        StrFile = Dir
    Loop
End Sub
share|improve this answer
2  
GREAT. This just improved the runtime from 20 seconds to <1 seconds. That's a big improvement, since the code will be run pretty often. THANK YOU!! – FMan Apr 30 '12 at 12:48
1  
+ 1 Good Suggestion :) – Siddharth Rout May 1 '12 at 19:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.