Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SetCreationTime()

static void System.IO.File.SetCreationTime ( string path,
DateTime creationTime )
inlinestatic

Definition at line 152 of file File.cs.

153 {
154 string fullPath = Path.GetFullPath(path);
155 FileSystem.SetCreationTime(fullPath, creationTime, asDirectory: false);
156 }

References System.IO.Path.GetFullPath(), and System.IO.FileSystem.SetCreationTime().