Check last modified date of file in C#
c#, file, last-modified, windows
Solution
System.IO.File.GetLastWriteTime is what you need.
Problem
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.
c#, file, last-modified, windows
System.IO.File.GetLastWriteTime is what you need.
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.