not a problem with the .exe but something wrong in the doc file.
Code:
GETFILETIME
Action
Returns the date and time information of a file.

Syntax
GETFILETIME ("file name", Mode)

Parameter
File name
Identifies the file for which you want to retrieve the date and time information.
Time
Optional integer parameter indicating which date/time information GetFileTime should return. Possible values:

0 Return last write time (default).
1 Return creation time.
2 Return last access time.

Mode
Optional integer parameter indicating if and how the returned time should be adjusted to daylight saving time. Possible values:

0 Adjust time using current daylight saving time (default).
1 Adjust time using daylight saving time of stored time.
2 Do not adjust time (return UTC).


the parameter "Time" doesn't appear in the syntax line.
i suppose GetFileTime has 3 parameters :
filename
time
mode

and not 2 as mentionned in the help file !!!
I think that to preserve backward compatibility, it should be :
Code:
Syntax
GETFILETIME ("file name", Time, Mode)



Edited by Christophe Melin (2006-06-27 10:48 AM)