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

For a file, the structure specifies when the file was last written to, truncated, or overwritten. The date and time are not updated when file attributes or security descriptors are changed.

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

Syntax

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

Remarks

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

See Also