In C#, what\'s the simplest/safest/shortest way to make a file appear as though it has been modified (i.e. change its last modified date) without changing the contents of th
System.IO.File.SetLastWriteTimeUtc(fileName, DateTime.UtcNow);