Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set fs = Application.FileSearch
With fs
.LookIn = "c:\test"
.FileType = msoFileTypeExcelWorkbooks
.Execute
End With
For i = 1 To fs.FoundFiles.Count
msgbox fs.FoundFiles(i)
Next i