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
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
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