std.file.DirEntry.timeLastAccessed
- multiple declarations
Function DirEntry.timeLastAccessed
Returns the time that the file represented by this DirEntry
was
last accessed.
SysTime timeLastAccessed
() @property @safe;
Note that many file systems do not update the access time for files
(generally for performance reasons), so there's a good chance that
timeLastAccessed
will return the same value as
timeLastModified
.
Function DirEntry.timeLastAccessed
Returns the time that the file represented by this DirEntry
was
last accessed.
SysTime timeLastAccessed
() @property @safe;
Note that many file systems do not update the access time for files
(generally for performance reasons), so there's a good chance that
timeLastAccessed
will return the same value as
timeLastModified
.
Authors
Walter Bright, Andrei Alexandrescu, Jonathan M Davis