-
-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read/Write on a network folder #30
Comments
It is indeed not possible.
What do you mean? Afaik, Linux doesn't have an equivalent of that right? |
I would also be interested in this feature, maybe a "/smb/SERVER-> \\SERVER" convention enabled in windows environments could do the job the same way you handle local drives with "/mnt/C -> C:\". Thank you for this lib, it looks very useful and well written. |
Just adding a comment - on Linux you would mount an SMB path for perusal or use an smbclient; on Windows you'd do the same with NET USE:
Then in Zio you would use:
Essentially using the 'net use' is mounting the path as a subsystem and even works on local. @guillaume86 how would you envision this being cross-supported or is this a windows only feature side? |
Something like .NET built-in IO accepts UNC Paths and other valid but not portable path formats on Windows. |
Maybe a @xoofx any remarks/recommendations if someone was to tackle that? |
The integration into PhysicalFileSystem doesn't match. A unc is like an http connection where you have the host and the path inside it. |
I would like to read and write on a folder placed on a shared storage using the
SubFileSystem
. Is this possible? I can't seem to find the way, I always get the exception:A path on Windows must start by /mnt/ followed by the drive letter.
Also, I'd like to be compatible with both Windows and Linux.
This is the code I have:
Thanks
The text was updated successfully, but these errors were encountered: