Replies: 2 comments 2 replies
-
When choosing UNC paths you should avoid using prefixes that are already meaningful. The name Use a name like |
Beta Was this translation helpful? Give feedback.
-
I cannot test this right now, but try mounting the file system as a drive as well (i.e. add an Volume prefixes should work under FUSE as they are used widely (e.g. by SSHFS-Win). |
Beta Was this translation helpful? Give feedback.
-
Hey,
the FUSE api of WinFSP offers the
VolumePrefix
option, to mount the filesystem as a network drive, seewinfsp/src/dll/fuse/fuse.c
Lines 103 to 106 in c61679a
and
winfsp/src/dll/fuse/fuse.c
Lines 640 to 641 in 6fb7255
Mounting the filesystem, it is then accessible over the assigned drive letter and the UNC path. According to the help output, the path should be of form
/server/share
. If for the "share" part a path with more than one section is used, the filesystem is still mounted and accessible via its assigned drive letter, but you cannot access it anymore via its UNC path.For example, if I mount the filesystem with option
-oVolumePrefix=/localhost/myShare/foobar
, i cannot access the filesystem with\\localhost\myShare\foobar
.Beta Was this translation helpful? Give feedback.
All reactions