I\'m looking to find out a way of seeing when a file was last modified in C#. I have full access to the file.
Just use File.GetLastWriteTime. There's a sample on that page showing how to use it.