I\'m using pyinotify to watch a folder for when files are created in it. And when certain files are created I want to move them. The problem is that as soon as the file is c
If you have control of the writing process, you could call the file "foo.part" while it is being written to and rename it to "foo" when it has been closed.