Are Windows 10 symbolic links supported by Python 3?
I've created a symbolic link using mklink
on Windows but when I call Python's open
on it, I get a message that the file does not exist.
Note that this is not a shortcut Windows file (which is of course just a regular file with redirecting information that Windows Explorer uses), but a symbolic link.
I expected this symbolic link to be treated transparently by the file system, that is, that the file system would give access to the target file to any application (including Python) accessing the link. Isn't it how it is supposed to work?