xoofx / zio

A cross-platform abstract/virtual filesystem framework with many built-ins filesystems for .NET
BSD 2-Clause "Simplified" License
822 stars 61 forks source link

Mount memory FS to folder #46

Closed vuminhquang closed 4 years ago

vuminhquang commented 4 years ago

Hello, I wonder if the library can support to mount from memory to a folder? Something like: var fs = new MemoryFileSystem(); fs.CreateDirectory("/Test"); var mountfs = new MountFileSystem(); mountfs.Mount("/mnt/c/Temp", fs); After that, we can use Explore to browse c:\Temp and see Test folder inside. Thank you.

Sincerely, Quang, Vu

xoofx commented 4 years ago

No sorry, zio is a virtual filesystem within .NET, not a filesystem that can be consumed by OS filesystems.

vuminhquang commented 4 years ago

Thank you.