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