Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Virtual drives in .NET?

Is there any easy library for .NET to mount virtual drives?
I need to mount an archive in a virtual drive and, most likely, use a virtual file system.
The archive format does not support folders so I'd need to supply the files and folders manually from the archive. Attributes aren't supported as well but I use metadata files to store them.
The more control over the drive and FS I have, the better.

like image 948
Vercas Avatar asked Dec 19 '10 11:12

Vercas


1 Answers

Windows 10 provides cloud filter API and projected file system API. Both run in user mode, do not require signing and driver installation. The cloud filter API is part of Windows for a couple of years already.

Example in .NET on GitHub.

like image 81
triod315 Avatar answered Oct 05 '22 06:10

triod315