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

◆ SetCreationTime()

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

Definition at line 70 of file Directory.cs.

71 {
72 string fullPath = Path.GetFullPath(path);
73 FileSystem.SetCreationTime(fullPath, creationTime, asDirectory: true);
74 }

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