vote up 6 vote down star
4

The subject says it all - normally easy and cross platform way is to poll, intelligently. But every OS has some means to notify without polling. Is it possible in a reasonably cross platform way? (I only really care about Windows and Linux, but I use mac, so I thought posix may help?)

flag

7 Answers

vote up 8 vote down check

Linux users can use inotify

inotify is a Linux kernel subsystem that provides file system event notification.

Some goodies for Windows fellows:

link|flag
yeah I was able to make it work for that. Its a bit odd, with a blocking read() - but at least there is zero latency (rather, no polling !). – Michael Neale Sep 15 '08 at 6:13
vote up 1 vote down

I don't think POSIX itself has facilities for that. The closest to cross-platform I've seen is FAM, which seems to work for Linux, BSD, and Irix, but I'm not how easy it would be to port it to Windows and MacOS.

link|flag
vote up 0 vote down

OK so it looks like I will be looking for solutions for each platform that I care about, alas.

link|flag
vote up 0 vote down

I believe OS X now has appropriate hooks/callbacks because they were needed for Spotlight indexing.

On linux you'll have the additional trouble that there are multiple file systems commonly used. If you need the functionality for only a limited amount of files/directories, I'd try about actively looking for modifications at regular intervals.

link|flag
vote up 4 vote down

The Qt library has a QFileSystemWatcher class which provides cross platform notifications when a file changes. Even if you are not using Qt, because the source is available you could have a look at it as a sample for your own implementation. Qt has separate implementations for Windows, Linux and Mac.

link|flag
vote up 0 vote down

There's File System Events API as of Leopard.

link|flag
vote up 1 vote down

libevent or libev seem to be what you want, though I haven't used them.

link|flag

Your Answer

Get an OpenID
or

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