[This is preliminary documentation and is subject to change.]

For a file, the structure specifies when the file was last read from, written to, or for executable files, run.

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public Nullable<DateTime> AccessTime { get; set; }
Visual Basic
Public Property AccessTime As Nullable(Of DateTime)
	Get
	Set
Visual C++
public:
property Nullable<DateTime> AccessTime {
	Nullable<DateTime> get ();
	void set (Nullable<DateTime> value);
}
F#
member AccessTime : Nullable<DateTime> with get, set
JScript
function get AccessTime () : Nullable<DateTime>
function set AccessTime (value : Nullable<DateTime>)

Remarks

For a directory, the structure specifies when the directory is created. If the underlying file system does not support last access time, this member is zero.

On the FAT file system, the specified date for both files and directories is correct, but the time of day is always set to midnight.

See Also