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.
*The First LOCAL is only valid in 7.0 & 8.0 and NOT required
LOCAL oFS as 'Scripting.FileSystemObject'
LOCAL lcfilename
lcFileName ='c:\autoexec.bat'
oFS=CreateObject('Scripting.FileSystemObject')
With oFS
If .FileExists(lcFileName)
? .GetFile(lcFileName).DateCreated
? .Getfile(lcFileName).DateLastAccessed
? .Getfile(lcFileName).DateLastModified
? .Getfile(lcFileName).Size
Endif
Endwith
Release oFS