Returns a Date value that indicates the date and time when a file was created or last modified.
Public Function FileDateTime(ByVal PathName As String) As DateTime
| Exception type | Error number | Condition |
|---|---|---|
| 52 | PathName is invalid or contains wildcards. | |
| 53 | Target file does not exist. |
This example uses the FileDateTime function to determine the date and time a file was created or last modified. The format of the date and time displayed is based on the locale settings of your system.
Dim MyStamp As Date
' Assume TESTFILE was last modified on October 12, 2001 at 4:35:47 PM.
' Assume English/U.S. locale settings.
' Returns "10/12/2001 4:35:47 PM".
MyStamp = FileDateTime("C:\TESTFILE.txt")
FileLen Function | GetAttr Function |