Re: [Tutor] python watchfolder as daemon

2005-11-10 Thread Hugo González Monteverde
Hi, I do this all the time. I use a recipe, and import a daemon module. The module is here: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/278731 in your script, just do import daemon and daemon.createDaemon() Works like a charm. Hugo Frank Hoffsümmer wrote: > Hello all, > I found

Re: [Tutor] python watchfolder as daemon

2005-11-10 Thread Alex Hunsley
Frank Hoffsümmer wrote: >Hello all, >I found this gem of a python recipe that allows me to monitor a hierarchy of >folders on my filesystem for additions / changes / removals of files: >http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/215418 > >I would like to monitor a folder hierarchy us

[Tutor] python watchfolder as daemon

2005-11-10 Thread Frank Hoffsümmer
Hello all, I found this gem of a python recipe that allows me to monitor a hierarchy of folders on my filesystem for additions / changes / removals of files: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/215418 I would like to monitor a folder hierarchy using this script but now I wonde