Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I write my own 'filesystem' within Windows?

I've recalled using little 'filesystems' before that basically provided an interface to something else. For example, I believe there was a GMail filesystem that created an entry in My Computer and could be used like any other drive on your local computer. How can I go about implementing something like this in C++? Thank you!

like image 823
Null Avatar asked Dec 26 '09 04:12

Null


1 Answers

Try Dokan. It's like FUSE, except for Windows. I think there are certain limitations to namespace extensions, like they cannot be accessed from the command line, but I'm really not sure as of now.

like image 158
blwy10 Avatar answered Sep 23 '22 19:09

blwy10