mr_e_landis
Registered User.
- Local time
- Today, 05:48
- Joined
- Feb 16, 2005
- Messages
- 28
This is the gist of what I have been running and what seams to be not working.
The problem I just discovered is that it will not find .zip files
I've even tried using a .FileName = "*.zip" and still no .zip files are found...
The full story is quite complicated and hard to explain. But I'm basically creating a cataloging system that will document what files are on what DVD archives. There is one directory that I specify, usually "DVD0001, DVD0002, Etc..." In that directory I dump an infinite amount of files and folders until it reaches the capacity of a DVD. Then I run my utility I've made and it searches in that root directory I specified for any and every file in any and every folder. Thats where I'm having the problem...
Application.FileSearch wont find any ZIP files for some reason???
What gives?
Code:
With Application.FileSearch
.NewSearch
.LookIn = f.Path
.SearchSubFolders = True
.FileName = "*"
.Execute
FileCount = .FoundFiles.Count
End With
The problem I just discovered is that it will not find .zip files

I've even tried using a .FileName = "*.zip" and still no .zip files are found...
The full story is quite complicated and hard to explain. But I'm basically creating a cataloging system that will document what files are on what DVD archives. There is one directory that I specify, usually "DVD0001, DVD0002, Etc..." In that directory I dump an infinite amount of files and folders until it reaches the capacity of a DVD. Then I run my utility I've made and it searches in that root directory I specified for any and every file in any and every folder. Thats where I'm having the problem...
Application.FileSearch wont find any ZIP files for some reason???
What gives?