FileSetTimestampsUtc Method (String, DateTime, DateTime, DateTime, PathFormat) |
[AlphaFS] Sets all the date and time stamps, in coordinated universal time (UTC), for the specified file, at once.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static void SetTimestampsUtc(
string path,
DateTime creationTimeUtc,
DateTime lastAccessTimeUtc,
DateTime lastWriteTimeUtc,
PathFormat pathFormat
)
Public Shared Sub SetTimestampsUtc (
path As String,
creationTimeUtc As DateTime,
lastAccessTimeUtc As DateTime,
lastWriteTimeUtc As DateTime,
pathFormat As PathFormat
)
public:
static void SetTimestampsUtc(
String^ path,
DateTime creationTimeUtc,
DateTime lastAccessTimeUtc,
DateTime lastWriteTimeUtc,
PathFormat pathFormat
)
static member SetTimestampsUtc :
path : string *
creationTimeUtc : DateTime *
lastAccessTimeUtc : DateTime *
lastWriteTimeUtc : DateTime *
pathFormat : PathFormat -> unit
Parameters
- path
- Type: SystemString
The file for which to set the dates and times information. - creationTimeUtc
- Type: SystemDateTime
A DateTime containing the value to set for the creation date and time of path. This value
is expressed in UTC time.
- lastAccessTimeUtc
- Type: SystemDateTime
A DateTime containing the value to set for the last access date and time of path. This
value is expressed in UTC time.
- lastWriteTimeUtc
- Type: SystemDateTime
A DateTime containing the value to set for the last write date and time of path. This value
is expressed in UTC time.
- pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
See Also