Contango
Contango

Reputation: 80378

How do I change file creation time in C#?

I'm wondering how I can change file creation time within C#?

Upvotes: 31

Views: 16508

Answers (1)

Daniel Peñalba
Daniel Peñalba

Reputation: 31897

You can use the following method from System.IO namespace:

File.SetCreationTime(fileName, fileTime);

Upvotes: 56

Related Questions