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.
Sub searchf()
With Application.FileSearch
.LookIn = "E:\Dane\Tym\"
'.......
Sub SearchF()
Dim fso As Object
Dim fld As Object, fil As Object
Set fso = CreateObject("Scripting.FileSystemObject")
Dim path As String, i As Long
path = "C:\"
Set fld = fso.GetFolder(path)
For Each fil In fld.Files
Debug.Print fil.Name
Next
End Sub