vote up 1 vote down star

Obviously it gets updated during a write operation, but are there any non-destructive operations that also force an update? Basically looking to be able to do the equivalent of the *nix touch command, but in C# programmatically.

flag

75% accept rate

3 Answers

vote up 7 vote down check

Use the function SetFileTime (C++) or File.SetLastWriteTime (C#) to set the last write time to the current time.

link|flag
Excellent, thanks much! I figured it would be simple, but I'm still learning my way around the .Net framework... Sometimes even simple things can be hard to find... :) – Brian Knoblauch Nov 20 '08 at 19:55
vote up 2 vote down

From .NET, use the LastWriteTime property of the FileSystemInfo object. There is, in fact, a complete Touch app in example of that property in the MSDN.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.