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

I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. By "modified", I mean I want my code to be notified whenever a file's contents are altered, it's renamed, or it's deleted; or if a new file is added. For my application, there can be thousands of files.

I looked as FSEvents, but its Technology Overview says, in part:

The important point to take away is that the granularity of notifications is at a directory level. It tells you only that something in the directory has changed, but does not tell you what changed.

It also says:

The file system events API is also not designed for finding out when a particular file changes. For such purposes, the kqueues mechanism is more appropriate.

However, in order to use kqueue on a given file, one has to open the file to obtain a file descriptor. It's impractical to manage thousands of file descriptors (and would probably exceed the maximum allowable number of open file descriptors anyway).

Curiously, under Windows, I can use the ReadDirectoryChangesW() function and it does precisely what I want.

So how can one do what I want under Mac OS X? Or, asked another way: how would one go about writing the equivalent of ReadDirectoryChangesW() for Mac OS X in user-space (and do so very efficiently)?

share|improve this question

4 Answers

EDIT: Not verified, but Konstantin indicates below that this code sample is obsolete as of 2012.

I don't believe there's a specific API for what you're looking for. Apple provides sample code for a similar problem called Watcher. It is not what you are looking for, but it is about the best you can do at this point. You have to take snapshots of the directory, and rescan it when you find out something changed. Modification time is the best thing to check of course, if you can trust modification time.

You are probably correct that trying to register for an unbounded number of kqueues would likely be unworkable.

share|improve this answer
I generally dislike Windows programming and much prefer Mac/Linux programming. It just seems bizarre that there's apparently at least 1 thing that's easier to do in Windows. – Paul J. Lucas Nov 24 '09 at 2:11
1  
Oh, there are many things easier to do on Windows. Try talking SOAP using Cocoa. NSArray is nice, but sometimes a C#-style generic would be very welcome. Mac has nothing even close to ASP.NET (I'm looking at you, WebObjects). I love Cocoa; it's by far the best framework I've ever encountered. But anyone who thinks that everything is better for developers on Mac than on Windows hasn't developed very much on both. For stuff like this, we're all waiting for that holy grail of zfs, which might make this kind of stuff easier and faster. Someday... (Microsoft has its dreams of winfs too...) – Rob Napier Nov 24 '09 at 17:25
The problem is that you are bunching Linux programming with Mac programming. This is very easy to do on Linux with inotifywait. – Syzygy Aug 10 '12 at 14:40
"Watcher" code sample is obsolete. – Konstantin Pavlikhin Sep 14 '12 at 9:13

The closest utility (that I know of) that matches your needs on Mac OS X is fslogger. See the link for a description, dmg and source code: OSXBook - fslogger

share|improve this answer

You might want to check out man fs_usage, though it's not specific to a directory and requires root privileges.

share|improve this answer

http://developer.apple.com/library/mac/#documentation/Darwin/Conceptual/FSEvents_ProgGuide/UsingtheFSEventsFramework/UsingtheFSEventsFramework.html

Helps ?

Have you seen this example ? http://developer.apple.com/library/mac/#featuredarticles/FileSystemEvents/_index.html

share|improve this answer
1  
While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Bill the Lizard Aug 25 '12 at 14:32
Re-read the second paragraph of my original question. – Paul J. Lucas Aug 27 '12 at 23:32

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.