If I mount through command line: `sshfs user@host:/ x:` In Python: ``` from nt import _getfinalpathname _getfinalpathname('x:\\') ``` I get error: > OSError: [WinError 1005] The volume does not contain a recognized file system. If I mount through `net use` command, Python works without error.