I try to access a path on Windows network drive. E.g. z:\\ascii_name\non_ascii_name
, or with such an umlaut it would be z:\\folder\folder with æ
.
os.path.join returns z:\\\\folder\\folder with æ
, but I get a FileNotFoundError.
I'm running this using Anaconda3 on Windows 10. sys.getfilesystemencoding()
returns 'utf-8'.
I found some Python2 related threads that didn't get me any further. I would be very grateful for help and ideas.