FileGetTime()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

FileGetTime()

OutputVar := Mfunc.FileGetTime([Filename, WhichTime])

Mfunc.FileGetTime([Filename, WhichTime])

Retrieves the datetime stamp of a file or folder.

Parameters

Filename

The name of the target file or folder, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified. If omitted, the current file of the innermost enclosingFile-Loop will be used instead.

WhichTime

Which timestamp to retrieve:
M = Modification time (this is the default if the parameter is omitted)
C = Creation time
A = Last access time

Returns

Returns the retrieved date-time in format YYYYMMDDHH24MISS. The time is your own local time, not UTC/GMT.

Throws

Throws MfException is non-zero then InnerException has a message of A_LastError

Remarks

Wrapper for AutoHotkey Docs - FileGetTime.
Static method.

Any and/or all parameter for this function can be instance of MfString or var containing string.

See YYYYMMDDHH24MISS for an explanation of dates and times.

See Also:AutoHotkey Docs - FileGetTime.

Example

OutputVar := Mfunc.FileGetTime("C:\My Documents\test.doc") ; Retrieves the modification time by default.
OutputVar := Mfunc.FileGetTime("C:\My Documents\test.doc", "C") ; Retrieves the creation time.