Returns the time when the file represented by the specified file object was last modified.
Syntax
lastModified( file )
file.lastModified( )
Parameters
Returns
time
|
when the file object as last modified.
|
Example
if fh.lastModified( ) > timestamp.lastModified( ) then
println( "file has been updated since last run" )
end
|