Update TODO

This commit is contained in:
chrys87 2016-07-11 15:19:35 +02:00 committed by GitHub
parent e57a91307a
commit 2c1f7af5e8

12
TODO
View File

@ -8,7 +8,7 @@ ToDos in Priority order:
https://github.com/seb-m/pyinotify/wiki/Tutorial https://github.com/seb-m/pyinotify/wiki/Tutorial
import pyinotify import pyinotify
import glob
class Identity(pyinotify.ProcessEvent): class Identity(pyinotify.ProcessEvent):
def process_default(self, event): def process_default(self, event):
p = event.pathname p = event.pathname
@ -17,13 +17,9 @@ class Identity(pyinotify.ProcessEvent):
wm = pyinotify.WatchManager() wm = pyinotify.WatchManager()
notifier = pyinotify.Notifier(wm, default_proc_fun=Identity(), timeout=5) notifier = pyinotify.Notifier(wm, default_proc_fun=Identity(), timeout=5)
wm.add_watch('/dev/vcsa1', pyinotify.IN_CLOSE_WRITE, auto_add=True) for file in list(glob.glob('/dev/vcsa[0-64]')):
wm.add_watch('/dev/vcsa2', pyinotify.IN_CLOSE_WRITE, auto_add=True) wm.add_watch(file, pyinotify.IN_CLOSE_WRITE, auto_add=True)
wm.add_watch('/dev/vcsa3', pyinotify.IN_CLOSE_WRITE, auto_add=True) print(file)
wm.add_watch('/dev/vcsa4', pyinotify.IN_CLOSE_WRITE, auto_add=True)
wm.add_watch('/dev/vcsa5', pyinotify.IN_CLOSE_WRITE, auto_add=True)
wm.add_watch('/dev/vcsa6', auto_add=True)
#notifier.loop( )
try: try:
while 1: while 1: