Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I like the inotify subsystem in Linux. However, I'm mainly a Windows user, so I was wondering if there's anything similar?

share|improve this question

6 Answers

up vote 15 down vote accepted

See the FindFirstChangeNotification API, or the .NET counterpart FileSystemWatcher

share|improve this answer

If you're using .net, use FileSystemWatcher. More info here: http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx

If you're using C, use FindFirstChangeNotification, FindNextChangeNotification, ReadDirectoryChangesW. More info here: http://msdn.microsoft.com/en-us/library/aa365261(VS.85).aspx

On OSX, the relevant api is the fsevents api.

They're all subtly different from one another, and they all have questionable reliability in edge cases. In general, you can't depend on these apis for a complete view of all changes 100% of the time. Most people using file system monitoring combine it with periodic scans to compensate for lost or incomplete information from the push api.

share|improve this answer
2  
Can you please give some citation on the "questionable reliability in edge case for inotify? – Pharaun Aug 19 '10 at 1:50
5  
If a consumer of a fs watcher api is slower at reading events than some other process is at generating them, the kernel either needs to hold up filesystem modifications in the other (possibly higher priority) process, or allow for unlimited growth of the buffer. inotify's buffer depth (as documented in the man page) is controlled by /proc/sys/fs/inotify/max_queued_events. Beyond this, you get a IN_Q_OVERFLOW notification--this is good, but you're still left in a situation where you may need to rescan from time to time. – blucz Aug 19 '10 at 9:00
Aha right, I was recently reading up on the queue. I think this edge case would depend on how many files you are monitoring and it also depends on if its critical to track all changes or if a few can be missed. But that's a good point. Thanks :) – Pharaun Aug 19 '10 at 13:16

JNotify or FileMon from Microsoft.

share|improve this answer
2  
JNotify was perfect for me because I needed cross-platform compatibility. I was even able to write a single bash script which worked in cygwin, mac, and linux presuming only that JAVA_HOME was set correctly. This has been a great aid for debugging problems on customer's machines, when they say "it deleted my file!" I can actually look at the log and try to figure out how/when that happened. – cmyers Jul 24 '12 at 23:51

take a look at this: inotify-win, a port of the inotifywait tool for Windows

and also this: inotify-tools

share|improve this answer

I did a bit of searching, I seem to recall seeing something similar for Windows. There's FileSystemWatcher for .NET. Its mainly for NT or XP and forward.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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