vasakt
Results
2
comments of
vasakt
Looks like os.stat(...).st_ino doesn't work on windows on python 2.7. Always returns 0. So everything breaks.
Not sure of the best solution but I believe that you could use the win32file package. Something like: ``` def getReadHandle(filename): if os.path.isdir(filename): dwFlagsAndAttributes = win32file.FILE_FLAG_BACKUP_SEMANTICS else: dwFlagsAndAttributes = 0...