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 FileProperties()
Dim OFso As Object
Dim oFile As Object
Dim strFile
Set OFso = CreateObject("Scripting.FileSystemObject")
Set oFile = OFso.GetFile("Path&FileName") ' <- enter full path & name of the file
With oFile
strFile = .Name & vbCrLf _
& "Type : " & vbTab & .Type & vbCrLf _
& "Created : " & vbTab & .DateCreated & vbCrLf _
& "Modified : " & vbTab & .DateLastModified & vbCrLf _
& "Accessed : " & vbTab & .DateLastAccessed
End With
MsgBox strFile
End Sub