Florian Lindner wrote: > Hello, > is there a python lib (preferably in the std lib) to monitor a directory for > changes (adding / deleting files) for Linux 2.6?
There isn't, but if you don't want to use dnotify/inotify, it is trivial to implement: use a timer and check the listdir() return value. Reinhold -- http://mail.python.org/mailman/listinfo/python-list