C
ChristopherL
Hello,
I cannot seem to be able to use FileSearch to find files containing
"An apple a day" without also retrieving files containing "A big red
apple a day". What are my alternatives to be able to do this fast?
This is what my code looks like:
With Application.FileSearch
.NewSearch
.LookIn = Folder
.SearchSubFolders = False
.TextOrProperty = "An apple a day"
.filename = "*.txt*"
.MatchTextExactly = True
.Execute
Msgbox .FoundFiles.Count
End With
Thanks for any suggestions,
Chris
I cannot seem to be able to use FileSearch to find files containing
"An apple a day" without also retrieving files containing "A big red
apple a day". What are my alternatives to be able to do this fast?
This is what my code looks like:
With Application.FileSearch
.NewSearch
.LookIn = Folder
.SearchSubFolders = False
.TextOrProperty = "An apple a day"
.filename = "*.txt*"
.MatchTextExactly = True
.Execute
Msgbox .FoundFiles.Count
End With
Thanks for any suggestions,
Chris