我正在使用带有pyinotify的Celery监视模块的更改,但Celery的功能不起作用。我想弄明白为什么。所以我测试pyinotify模块并出现问题。
我按照pyinotify的教程写了一些代码:
import pyinotify
wm = pyinotify.WatchManager()
mask = pyinotify.IN_MODIFY | pyinotify.IN_ATTRIB
class EventHandler(pyinotify.ProcessEvent):
def process_IN_MODIFY(self, event):
print "IN_MODIFY:", event.pathname
def process_IN_ATTRIB(self, event):
print "IN_ATTRIB:", event.pathname
handler = EventHandler()
notifier = pyinotify.Notifier(wm, handler)
wdd = wm.add_watch('/home/mp/Public/testfile', mask, rec=True)
notifier.loop()
我改变' / home / mp / Public / testfile'两次使用gedit和CommandLine echo:
/usr/bin/python2.7 /home/mp/PycharmProjects/pywork/mpyinotify/inotify.py
IN_ATTRIB: /home/mp/Public/testfile
IN_ATTRIB: /home/mp/Public/testfile
然后我继续修改文件,但无论你多少次更改文件都没有回声。
pyinotify 0.9.6