Cross platform file-access tracking - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:20:36Zhttp://stackoverflow.com/feeds/question/20852http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20852/cross-platform-file-access-tracking0Cross platform file-access trackingmgsloan2008-08-21T19:16:51Z2008-11-03T13:11:11Z
<p>I'd like to be able to track file read/writes of specific program invocations. No information about the actual transactions is required, just the file names involved.</p>
<p>Is there a cross platform solution to this? What are various platform specific methods? On linux I know there's strace/ptrace (if there are faster methods that'd be good too). I think on mac os there's ktrace. What about windows?</p>
<p>Also, it would be amazing if it would be possible to block (stall out) file accesses until some later time.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/20852/cross-platform-file-access-tracking/21102#211020Answer by shamer for Cross platform file-access trackingshamer2008-08-21T20:32:31Z2008-08-21T20:32:31Z<p>On Windows you can use the command line tool <a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx" rel="nofollow" title="Handle">Handle</a> or the GUI version <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow" title="Process Explorer">Process Explorer</a> to see which files a given process has open.</p>
<p>If you're looking for a get this information in your own program you can use the <a href="http://www.microsoft.com/whdc/devtools/ifskit/default.mspx" rel="nofollow" title="Installable File System Kit">IFS kit</a> from Microsoft to write a file system filter. The file system filter will show all file system operation for all process. File system filters are used in AV software to scan files before they are open or to scan newly created files.</p>
http://stackoverflow.com/questions/20852/cross-platform-file-access-tracking/21230#212300Answer by mgsloan for Cross platform file-access trackingmgsloan2008-08-21T21:28:21Z2008-08-22T04:55:17Z<p>shamer - Thanks for the answer! Yes, I need the information in my own program. I'm afraid I need a solution that would be compatible with inclusion in an opensource project, so I'm afraid both handle and IFS kit are out. I really like sysinternals software, but sadly the command line tools are not redistributable.</p>
<p>mat - Ok, yeah, I will probably have to implement my own cross platform interface to this. That is ok. How do I do it well on each platform?</p>
<p>Edit - this is very interesting - <a href="http://okmij.org/ftp/syscall-interpose.html" rel="nofollow"><a href="http://okmij.org/ftp/syscall-interpose.html" rel="nofollow">http://okmij.org/ftp/syscall-interpose.html</a></a></p>
http://stackoverflow.com/questions/20852/cross-platform-file-access-tracking/21269#212691Answer by Mat Noguchi for Cross platform file-access trackingMat Noguchi2008-08-21T21:47:59Z2008-08-21T22:01:25Z<p>The short answer is no. There are plenty of platform specific solutions which all probably have similar interfaces, but they aren't inherently cross platform since file systems tend to be platform specific.</p>
<p><hr /></p>
<blockquote>
<p>How do I do it well on each platform?</p>
</blockquote>
<p>Again, it will depend on the platform :) For Windows, if you want to track reads/writes in flight, you might have to go with IFS. If you just want to get notified of changes, you can use ReadDirectoryChangesW or the NTFS change journal.</p>
<p>I'd recommend using the NTFS change journal only because it tends to be more reliable.</p>
<p>MSN</p>