I need to implement a simple virtual file system driver. The driver should let me mount the filesystem to some point and perform some basic file operations such as create, copy, delete. I don't care whether it will be for windows or linux. If someone has such source code please share it with me.

link|improve this question

54% accept rate
8  
www.please-do-this-massive-project-for-me-for-free.com – Lightness Races in Orbit Dec 26 '11 at 13:43
is that a homework? – onemach Dec 26 '11 at 13:44
This is not a question-answer type question! – Sangeeth Saravanaraj Dec 26 '11 at 13:45
I have implemented one using the fuse library. But i've created just a wrapper for the standard file operations. I'm interested in implementing my own methods for basic file manipulations. Some kind of an example will be enough. – innocent_rifle Dec 26 '11 at 13:47
feedback

closed as not a real question by Lightness Races in Orbit, Tim Cooper, Oli Charlesworth, Mike Kwan, Filburt Dec 26 '11 at 13:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

You can try fuse. It is a library to create virtual file systems and mount them.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.