vote up 0 vote down star
1

I find the .Net FileSystemWatcher class really handy for writing utilities that automatically come to life when files show up in their watched folders. Is there any equivalent to this functionality in the *nix world that would allow me to watch a folder (and possibly all of its subdirectories)?

Edit: Preferably this will be something that doesn't require kernel patches.

flag

4 Answers

vote up 11 vote down check

That would be Gamin the File Alteration Monitor or Inotify.

Edit: Mono does have Gamin bindings - in fact, its implementation of FileSystemWatcher uses Gamin. See http://www.mono-project.com/FAQ:_Technical (search the page for FileSystemWatcher, the FAQ doesn't have anchors unfortunately.)

link|flag
vote up 3 vote down

As has already being said, Mono has the class "System.IO.FileSystemWatcher", this is the relevant link: http://www.go-mono.com/docs/monodoc.ashx?link=T%3aSystem.IO.FileSystemWatcher

"Mono's implementation of the FileSystemWatcher has multiple backends. This is necessary because not all operating systems supported by Mono have all the features necessary to provide the functionality expected by applications.

If the operating system kernel supports watching directories (inotify on Linux, KEvents on BSD or OSX) that feature is used; Otherwise it falls back to using the Gamin or FAM libraries (these libraries provide an API to monitor directories) and if none of those features are available, Mono will poll every 750 milliseconds the directories watched.

You can force the polling behavior (instead of using the kernel support) by setting the MONO_MANAGED_WATCHER environment variable before executing your application. This might be useful for filesystems that do not support inotify and still require polling to detect changes."

link|flag
vote up 2 vote down

Yes, dnotify and inotify.

I don't know if Mono has these wrapped, but it would be worth checking.

link|flag
I've read elsewhere that the FileSystemWatcher doesn't work with linux filesystems when running in a Mono environment. Thanks though. – Luke Nov 27 '08 at 17:25
The problem with inotify is, that it's not portable b/c it only exists on linux and not on Unix in general. – AndrĂ© Nov 27 '08 at 17:27
Beagle uses inotify, so it's definitely wrapped in Mono somewhere. – Paul Fisher Nov 27 '08 at 17:32
vote up 1 vote down

If you're using the wonderful QT library (www.qtsoftware.com) it's included as the QFileSystemWatcher.

link|flag

Your Answer

Get an OpenID
or

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