File files with Application.FileSearch : FileSearch « File Path « VBA / Excel / Access / Word






File files with Application.FileSearch

 
Option Compare Database
Option Explicit

Sub findFile()
   With Application.FileSearch
      .NewSearch
      .LookIn = "c:\VBA"
      .FileName = "mydb.mdb"
      .SearchSubFolders = True
      If .Execute() > 0 Then
         Debug.Print  .FoundFiles(1) & " was found"
      Else
         Debug.Print "The file is not found."
      End If
   End With
End Sub

 








Related examples in the same category

1.The FileSearch Object
2.PropertyTests
3.The FoundFiles Collection Object
4.if a particular file exists, and False if not
5.searches the My Documents directory and its subdirectories for all XLS files that contain the text budget.
6.Find a file
7.Find a file with wildcard character
8.Use Application.FileSearch to find files