I have a server process that looks (watches via inotify) for files to be moved
(renamed) into a particular directory from elsewhere on the same filesystem. We
do this because it is an atomic operation, and our server process can see the
modify events of the file being written before it is close
> From: "Christian Heimes"
> On 2015-07-20 20:50, Marko Rauhamaa wrote:
> > "Jason H" :
> >
> >> I have a server process that looks (watches via inotify) for files to
> >> be moved (renamed) into a particular directory from elsewhere
On 22/05/2025 20:59, Michael F. Stemper wrote:
I recently wrote a program to do some record-keeping for me. I found
myself hard-coding a bunch of different values into it. This didn't
seem right, so I made my first use of configparser.ConfigParser().
Created the configuration file and everything