IFile.GetLastAccessTime

Syntax

GetLastAccessTime(FileName: String): DateTime;

Parameters

FileName — path and name of the file, which date and time of the last access must be found out.

Description

The GetLastAccessTime method returns date and time of the last access to a file.

Example

Sub UserProc;
Var
    d: DateTime;
Begin
    If File.Exists("c:\New_folder\1.txt"Then
        d:=File.GetLastAccessTime("c:\New_folder\1.txt");
    End If;
End Sub UserProc;

After executing the example, the "d" variable contains date and time of the last access to the 1.txt file if it exists.

See also:

IFile