vote up 0 vote down star

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.

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?

Also, it would be amazing if it would be possible to block (stall out) file accesses until some later time.

Thanks!

flag

3 Answers

vote up 1 vote down

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.


How do I do it well on each platform?

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.

I'd recommend using the NTFS change journal only because it tends to be more reliable.

MSN

link|flag
vote up 0 vote down

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.

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?

Edit - this is very interesting - http://okmij.org/ftp/syscall-interpose.html

link|flag
vote up 0 vote down

On Windows you can use the command line tool Handle or the GUI version Process Explorer to see which files a given process has open.

If you're looking for a get this information in your own program you can use the IFS kit 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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.