FileDateTime Function [Runtime] /text/sbasic/shared/03020407.xhp Sun Microsystems, Inc. converted from old format - fpe
FileDateTime function FileDateTime Function [Runtime] Returns a string that contains the date and the time that a file was created or last modified.
Syntax: FileDateTime (Text As String) Parameters: Text: Any string expression that contains an unambiguous (no wildcards) file specification. You can also use URL notation. This function determines the exact time of creation or last modification of a file, returned in the format "MM.DD.YYYY HH.MM.SS". Example: Sub ExampleFileDateTime msgbox FileDateTime("C:\autoexec.bat") end sub