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 sell()
Dim fso As Object
Dim fold
Dim file
Dim s As String
s = "C:\My Documents\YOUR FOLDER NAME HERE"
Set fso = CreateObject("scripting.filesystemobject")
Set fold = fso.getfolder(s)
With fold
For Each file In .Files
MsgBox file.Name
Next
MsgBox "There are " & .Files.Count & " files in folder " & s
End With
Set fso = Nothing
Set fold = Nothing
End Sub