###Function###
FileGetTime

###Description###
Returns the time and date information for a file.

###Syntax###
FileGetTime ( "filename" [, option [, format]] )


###Parameters###
@@ParamTable@@
filename
	Filename to check.
option
	[optional] Flag to indicate which timestamp
	0 = Modified (default)
	1 = Created
	2 = Accessed
format
	[optional] to specify type of return
	0 = return an array (default)
	1 = return a string YYYYMMDDHHMMSS
@@End@@


###ReturnValue###
@@ReturnTable@@
Success:	Returns an array or string that contains the file time information.  See Remarks.
Failure:	Returns 0 and sets @error to 1.
@@End@@



###Remarks###
The array is a single dimension array containing six elements:
$array[0] = year  (four digits)
$array[1] = month (range 01 - 12)
$array[2] = day   (range 01 - 31)
$array[3] = hour (range 00 - 23)
$array[4] = min  (range 00 - 59)
$array[5] = sec  (range 00 - 59)
Notice that return values are zero-padded.



###Related###
FileGetSize, FileGetAttrib, FileGetVersion, FileSetTime, FileSetAttrib


###Example###
@@IncludeExample@@
