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.
Dim FSO, readfile
Set FSO = CreateObject("Scripting.FileSystemObject")
DoDir FSO.GetFolder(".")
Sub DoDir(Folder)
On Error Resume Next
Dim File, SubFolder
For Each File In Folder.Files
set readfile = fso.GetFile(File)
If NOT readfile.Attributes And 32 Then
readfile.delete
End If
Next
For Each SubFolder in Folder.SubFolders
DoDir SubFolder
Next
End Sub
For Each SubFolder in Folder.SubFolders
DoDir SubFolder
Next