FileSetTimestamps Method (String, DateTime, DateTime, DateTime) |
[AlphaFS] Sets all the date and time stamps for the specified file, at once.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void SetTimestamps(
string path,
DateTime creationTime,
DateTime lastAccessTime,
DateTime lastWriteTime
)
Public Shared Sub SetTimestamps (
path As String,
creationTime As DateTime,
lastAccessTime As DateTime,
lastWriteTime As DateTime
)
public:
static void SetTimestamps(
String^ path,
DateTime creationTime,
DateTime lastAccessTime,
DateTime lastWriteTime
)
static member SetTimestamps :
path : string *
creationTime : DateTime *
lastAccessTime : DateTime *
lastWriteTime : DateTime -> unit
Parameters
- path
- Type: SystemString
The file for which to set the dates and times information. - creationTime
- Type: SystemDateTime
A DateTime containing the value to set for the creation date and time of path. This value
is expressed in local time.
- lastAccessTime
- Type: SystemDateTime
A DateTime containing the value to set for the last access date and time of path. This
value is expressed in local time.
- lastWriteTime
- Type: SystemDateTime
A DateTime containing the value to set for the last write date and time of path. This value
is expressed in local time.
See Also