Get the process that changed FileInfo.lastAccessTime or FileInfo.lastWriteTime
2 answers
As far as I know, all operating systems do not track this information for IO performance reasons.
You can implement a file watcher using FileSystemWatcher. Here's a very simple example:
http://www.csharphelp.com/2006/11/file-watcher-utility/
And then get a snapshot of the process from one of the event handlers
0
a source to share