© MCS Electronics, 1995-2007
See also
INITFILESYSTEM , OPEN , CLOSE, FLUSH , PRINT, LINE INPUT, LOC, LOF , EOF , FREEFILE , FILEATTR , SEEK , BSAVE , BLOAD , KILL , DISKFREE , GET , PUT , FILEDATE , FILETIME , FILEDATETIME , DIR , WRITE , INPUT
ASM
Input
Output
Partial Example
Print "File demo"
Print Filelen("josef.img");" length" ' length of file
Print Filetime("josef.img");" time" ' time file was changed
Print Filedate("josef.img");" date" ' file date
FILETIME
Action
Returns the time of a file
Syntax
sTime = FILETIME ()
sTime = FILETIME (file)
Remarks
Stime |
A string variable that is assigned with the file time. |
File |
The name of the file to get the time of. |
|
|
This function works on any file when you specify the filename. When you do not specify the filename, it works on the current selected file of the DIR() function.
See also
INITFILESYSTEM , OPEN , CLOSE, FLUSH , PRINT, LINE INPUT, LOC, LOF , EOF , FREEFILE , FILEATTR , SEEK , BSAVE , BLOAD , KILL , DISKFREE , GET , PUT , FILELEN , FILEDATE , FILEDATETIME , DIR , WRITE , INPUT
ASM
Calls |
_FileTimeS ; with file param |
_FileTimeS0 ; current file |
Input |
X : points to the string with |
Z : points to the target variable |
|
the mask |
|
Output |
|
|
|
|
|
Example