directory class : LastWriteTime(string) setter
Description
Sets a date and time when the directory was last written to.
Syntax
directoryInstance.LastWriteTime = value
Assigned value
Class | Description |
string | A date and time when the directory was last written to. |
Return value
None
Sample code
1: | directory dir = new directory("c:\somewhere..."); |
2: | dir.LastWriteTime = "3/04/2016 4:13:00"; |
Notes
It's a wrapper of the System.IO.DirectoryInfo.LastWriteTime property.
The assigned value need to be a string that can convert to the C#'s DateTime type.