ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Help on this code please (https://www.excelbanter.com/excel-programming/397245-help-code-please.html)

tom

Help on this code please
 
Can someone tell me why this won't find .zip files? It finds EVERY other
types, including some program specific files with non-Microsoft extentions. -
the only ones it won't find are zip files.

Sub Find()
With Application.FileSearch
.NewSearch
.LookIn = "d:\Data"
.SearchSubFolders = True
.MatchTextExactly = False
.FileType = msoFileTypeAllFiles
If .Execute() 0 Then
MsgBox "There were " & .FoundFiles.Count & " file(s) found."
For i = 1 To .FoundFiles.Count
Cells(i, 1).Value = .FoundFiles(i)
Cells(i, 2).Value = FileDateTime(.FoundFiles(i))
Cells(i, 3).Value = FileLen(.FoundFiles(i))
Next i
Else
MsgBox "There were no files found."
End If
End With
End Sub

Thanks!

Mike H

Help on this code please
 
Tom,

I beleive I read somewhere that XP views .zip files as folders so this code
won't return them. Sorry I can't remember the answer.

Mike

"Tom" wrote:

Can someone tell me why this won't find .zip files? It finds EVERY other
types, including some program specific files with non-Microsoft extentions. -
the only ones it won't find are zip files.

Sub Find()
With Application.FileSearch
.NewSearch
.LookIn = "d:\Data"
.SearchSubFolders = True
.MatchTextExactly = False
.FileType = msoFileTypeAllFiles
If .Execute() 0 Then
MsgBox "There were " & .FoundFiles.Count & " file(s) found."
For i = 1 To .FoundFiles.Count
Cells(i, 1).Value = .FoundFiles(i)
Cells(i, 2).Value = FileDateTime(.FoundFiles(i))
Cells(i, 3).Value = FileLen(.FoundFiles(i))
Next i
Else
MsgBox "There were no files found."
End If
End With
End Sub

Thanks!



All times are GMT +1. The time now is 06:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com