Re: [python-win32] pure python way to open a file with write deny for others

2020-03-06 Thread Eryk Sun
On 3/6/20, Robin Becker wrote: > > OK I want to read the (small) file completely. The other process may try to > re-write the file while I am reading it. I thought the other process already had the file open for writing, but apparently you just want to deny anyone the right to open the file with

Re: [python-win32] pure python way to open a file with write deny for others

2020-03-06 Thread Preston Landers
Is advisory file locking an option? Such as the "portalocker" module for Python? You can have your writer process obtain an exclusive lock (and block until it's obtained), while the readers obtain shared locks for the duration of their read. Readers don't block other readers, while writers block

Re: [python-win32] pure python way to open a file with write deny for others

2020-03-06 Thread Tim Roberts
Robin Becker wrote: On 05/03/2020 16:04, Eryk Sun wrote: On 3/5/20, Robin Becker wrote: I want to be able to read a windows file which is being periodically written by another process. I'm having difficulty reconciling this sentence with the subject line. OK I want to read the (small) fil

Re: [python-win32] pure python way to open a file with write deny for others

2020-03-06 Thread Robin Becker
On 05/03/2020 16:04, Eryk Sun wrote: On 3/5/20, Robin Becker wrote: I want to be able to read a windows file which is being periodically written by another process. I'm having difficulty reconciling this sentence with the subject line. OK I want to read the (small) file completely. The othe