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