Carlangueitor gracias por responder,  tienes razon queda mal identado al copiarlo 
 
tienes algun aporte acerca del evento en el que termina de grabarse el archivo en disco ?    
Código Python:
Ver originalimport pyinotify
 
class EventHandler(pyinotify.ProcessEvent):
 
    def process_IN_CLOSE_WRITE(self, event):
        print "Creacion del archivo :", event.pathname
        archivo = event.name
        ruta = event.pathname
        archi=open('datos.txt','a')
        archi.write('archivo:'+ ' '+ event.name + ' ' + 'ruta:'+ ' '+ event.pathname)
        archi.write('\n')
        archi.close()
 
wm = pyinotify.WatchManager()
mask = pyinotify.IN_CLOSE_WRITE
 
handler = EventHandler()
notifier = pyinotify.Notifier(wm, handler)
wdd = wm.add_watch('/resources', mask, rec=True)
notifier.loop()