Description |
The FileAge function returns the last modified date and time of a file FileName.
There is no need to open or close the file - this function handles these operations silently for you.
The returned value is in a 32 bit partitioned format. Use the FiledateToDateTime function to convert into a manageable TDateTime value.
If the file date could not be found (for example, the FileName was invalid), then -1 is returned.
|
|
Related commands |
|
|
|
Example code : Get the last modified date of the current Unit form file |
var
fileName : string;
fileDate : Integer;
begin // Try to open the Unit1.DCU file for the current project
fileName := 'Unit1.DCU';
fileDate := FileAge(fileName);
// Did we get the file age OK?
if fileDate > -1 then
ShowMessage(fileName+' last modified date = '+
DateToStr(FileDateToDateTime(fileDate)));
end;
|
Show full unit code |
Unit1.DCU last modified date = 10/11/2002
|
|