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
Dim flFolder, flFile
Set fso = CreateObject("scripting.filesystemobject")
Set flFolder = fso.GetFolder("c:\sandbox")
For Each file In flFolder.files
If InStr(file.name, "css") = 1 (maybe AND Instr(file.name, ".") >1 )Then
fso.DeleteFile(file)
End if
Next
Dim fso
Dim flFolder, flFile
Set fso = CreateObject("scripting.filesystemobject")
Set flFolder = fso.GetFolder("c:\sandbox")
For Each flfile In flFolder.files
If InStr(flfile.name, "css") = 1 And datediff("n",flFile.datelastmodified, Now)> 60 Then
fso.DeleteFile(file)
End if
Next