Scalabium Software

SMExport advertising
Knowledge for your independence'.
Home Delphi and C++Builder tips


#46: How can I read a date/time of file's creation?

If you want to receive a datetime of the specified file, then you must to call a FileAge function and convert the returned value using the FileDateToDateTime function into a TDateTime value:

function GetFileDateTime(FileName: string): TDateTime;
var intFileAge: LongInt;
begin
  intFileAge := FileAge(FileName);
  if intFileAge = -1 then
    Result := 0
  else
    Result := FileDateToDateTime(intFileAge)
end;


Published: November 26, 1999

See also
 
Clarion to Text converter
Viewer for TNEF-files (winmail.dat)
Word Web-stream
SMImport suite
Paradox to Text converter
Paradox ActiveX
Paradox Viewer
Database Information Manager
dBase Viewer
Paradox to MS Access converter
 
 


Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2023, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMExport advertising