Xbasic
FILE.CREATE_TIME Function
Syntax
Creation_Time as T = FILE.create_time(C filename )
Arguments
- filenameCharacter
The name of the file.
Returns
- Creation_TimeTime
Returns the date/time the file was created.
Description
Returns the date/time at which a file was created
Discussion
The FILE.CREATE_TIME() method returns the date/time that filename was created. Use the TIME() function to parse out date and time elements from Time.
Example
? FILE.create_time("C:\Databases\Help_Database\Help_Database.adb") = 04/23/2003 08:31:18 70 am
See Also