Python Inotify for a list of folders

Viewed 1454

I am looking for a way to check a list of document roots of 5 domains to inotify directory watch.

For a single folder it is working like this

DIRECTORY_TO_WATCH = "/home/serveradmin/"

I have a list of folders which needs to be checked recursively for my server.

I just started learning python and have some hands on experience in C language. Just starting learning developments.

Is there anyone who can help me on this? I need to have a recursive inotify watch on 5 folders mentioned in a file named /tmp/folderlist.txt

IS there any similar code available anywhere I can refer?

3 Answers
Related