Sets the creation date and time for the specified file or directory.

Namespace: Composite.Core.IO.Plugins.IOProvider
Assembly: Composite (in Composite.dll) Version: 5.3.6135.33083

Syntax

C#
void SetCreationTime(
	string path,
	DateTime creationTime
)
Visual Basic
Sub SetCreationTime ( _
	path As String, _
	creationTime As DateTime _
)
Visual C++
void SetCreationTime(
	String^ path, 
	DateTime creationTime
)

Parameters

path
Type: System..::..String
The file or directory for which to set the creation date and time information.
creationTime
Type: System..::..DateTime
An object that contains the value to set for the creation date and time of path. This value is expressed in local time.

See Also