Reputation: 80378
I'm wondering how I can change file creation time within C#?
Upvotes: 31
Views: 16508
Reputation: 31897
You can use the following method from System.IO namespace:
System.IO
File.SetCreationTime(fileName, fileTime);
Upvotes: 56