I am currently refactoring some old Python code and stumbled across this construct:
abspath = '\\\\?\\' + os.path.abspath(path)
Can anyone explain the possible use of the prefix? I would like to get rid of it but I am not sure whether it solves some strange corner case, like UNC network path access or something similar.
If it helps, we are only developing on Windows, so I can rule out that the prefix handles some non-Windows os-specific case.