Unit 'sysutils' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#rtl]

FileGetDate

Return the file time of an opened file.

Declaration

Source position: filutilh.inc line 279

function FileGetDate(

  Handle: THandle

):Int64;

function FileGetDate(

  Handle: THandle;

  out FileDateTime: TDateTime

):Boolean;

Description

FileGetdate returns the filetime of the opened file with file handle Handle. It is the same as FileAge, with this difference that FileAge only needs the file name, while FilegetDate needs an open file handle.

Errors

On error, -1 is returned.

See also

FileAge

  

Return the timestamp of a file.

Example

Program Example39;

{ This program demonstrates the FileGetDate function }

Uses sysutils;

Var F,D : Longint;

Begin
  F:=FileCreate('test.dat');
  D:=FileGetDate(F);
  Writeln ('File created on ',DateTimeToStr(FileDateToDateTime(D)));
  FileClose(F);
  DeleteFile('test.dat');
End.

Documentation generated on: Jul 24 2023