2019.07.31 10:09 Andrey <ahippo@xxxxxxxxx> >31.07.2019, 09:53, "Philip McGraw" <philip.mcgraw@xxxxxxxxxxx>: >>> 30.07.2019, 13:37, "Philip McGraw" <philip.mcgraw@xxxxxxxxxxx>: >>> > python os.remove() throws exceptions on Windows platform when attempting >>> > to remove file while it is still open. Need to grab filename while file open, >>> > close file handle, then remove by name. Apparently other platforms are more >>> > permissive of removing files while busy. >>> > reference: >>> > --- >>> > git-p4.py | 4 +++- >>> > 1 file changed, 3 insertions(+), 1 deletion(-) >>> > >>> > diff --git a/git-p4.py b/git-p4.py >>> > index c71a6832e2..6b9d2a8317 100755 >>> > --- a/git-p4.py >>> > +++ b/git-p4.py >>> > @@ -1161,12 +1161,14 @@ def exceedsLargeFileThreshold(self, relPath, contents): >>> > return False >>> > contentTempFile = self.generateTempFile(contents) >>> > compressedContentFile = tempfile.NamedTemporaryFile(prefix='git-p4-large-file', delete=False) >>> > + compressedContentFileName = compressedContentFile.name >>> > zf = zipfile.ZipFile(compressedContentFile.name, mode='w') >>> > zf.write(contentTempFile, compress_type=zipfile.ZIP_DEFLATED) >>> > zf.close() >>> > compressedContentsSize = zf.infolist()[0].compress_size >>> > os.remove(contentTempFile) >>> > - os.remove(compressedContentFile.name) >>> > + compressedContentFile.close() >>> > + os.remove(compressedContentFileName) >>> >>> I'm not sure why NamedTemporaryFile() is called with delete=False above, >>> but it appears to me that it can have delete=True instead, >>> so that there is no need to call os.remove() explicitly >>> and thus worry about remove vs close ordering at all. >>> >>> > if compressedContentsSize > gitConfigInt('git-p4.largeFileCompressedThreshold'): >>> > return True >>> > return False >>> > -- >>> > 2.21.0.windows.1 >>> >>> Thank you, >>> Andrey. >> >> Thanks Andrey; simpler is certainly better! I will test and re-submit v2 of patch with that approach. > >Thank you, that would be great! > >-- >Andrey. Unfortunately it wasn't as simple it seemed: upon testing with only changing delete=True, found that the problem was not solved. Upon further debugging, recoded/refactored slightly adding allocateTempFileName() locally scoped function to try to clarify how the NamedTemporaryFile() was actually being used. We can't depend on the delete-on-close because the NamedTemporaryFile() is merely allocating a temporary name for real use by the zipfile open-for-write which fails (on Windows) if file was not explicitly closed first. Hopefully the new patch (https://github.com/gitgitgadget/git/pull/301) will make this more clear. Open to other suggestions if still not clear. Thanks again, Philip