vote up 3 vote down star
2

Hi,

I'm looking for a cross-platform file monitoring python package? I know it is possible to monitor files on windows usung pywin32, and there are packages working on Linux/Unix but does anyone know about a cross-platform one?

flag

67% accept rate
Tim Golden has a very simple cross-platform method of polling a directory with os.listdir here: timgolden.me.uk/python/win32_how_do_i/… – Adam Bernier Feb 28 at 12:07
What does "monitor" mean? Please provide some hint as to what you are trying to do. – S.Lott Feb 28 at 12:08

3 Answers

vote up 2 vote down check

For Unix/Linux based systems, you should use File Alteration Monitor python bindings to libfam.

For Windows based systems, you should tie into the Win32 API FindFirstChangeNotification and related functions.

As for a cross platform way, I don't know about a good cross platform way. I think it would be best to build a module yourself that works on either OS that uses one of the 2 above methods after detecting what OS it is.

link|flag
vote up 0 vote down

The easiest way on Linux is to use inotifywait (given that your kernel is recent enough). You don't need any special bindings, inotifywait can be customized to print output lines on standard output in any way you want. Look and this question for a good example.

link|flag
vote up 0 vote down

I found this link, which talks about your problem. Although it doesn't really provide s solution/library, I think it will help. http://www.stepthreeprofit.com/2008/06/cross-platform-monitoring-of-filesystem.html

I don't think there is a cross-platform one yet, so you might want to roll your own.

I am inexperienced in this area so I am not really sure. I hope this helps.

Note
I stand corrected, gamin is available on cygwin as Adam Bernier pointed out to me in a comment. You may want to research other options on cygwin (if they exist).

link|flag
Seems to be some good feedback for Gamin on Linux. FWIW, Gamin is listed in cygwin packages: cygwin.com/packages – Adam Bernier Feb 28 at 12:12
Ah! cygwin! I didn't think of that. I stand corrected. – batbrat Feb 28 at 12:28

Your Answer

Get an OpenID
or

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