Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a Windows Virtual Drive ( like c:\ ) to map a remote storage. The main purpose is to do it in a clear way to the user. Therefore the user wouldn't know that he is writing/reading from another site.

I was searching for available products, and i find that FUSE is not an option in Windows and WebDAV maps directly the drive, and i would like to build a middle layer between windows and remote storage to implement some kind of services. Another alternatives exists, such as Dokan, that is very expensive, and System.IO.IsolatedStorage Namespace, that doesn't seem to explicity create a new Windows Drive.

Probably pismo ( http://www.pismotechnic.com/ ) is the thing that mostly matches my requirements but I would know if there is another alternative, including some Windows ( C++ or .NET ) native API to do that.

Thanks for reading :)

share|improve this question

7 Answers

up vote 7 down vote accepted

As I see, there are several options to implement this.

The "native" one is creating a custom driver (.sys file) that intercepts the I/O operations. Microsoft call it, MiniFilter. This option is the tought one but allows you full control.

The cowards ;) option is to use a existing library to do this, examples of this are Dokan, GPL (dokan-dev.net/en), Pismo, free (www.pismotechnic.com) or Callback File System (www.eldos.com).

However if you don't have Windows as main target, you can use FUSE thats is a pretty good option.

share|improve this answer
1  
You made a type in the pismo url. It is pismotechnic.com – Foole May 8 '10 at 12:45
Thanks! You are a rockstar. – aloneguid Dec 30 '10 at 16:41
I see that it's very old question but what approche did you choose and how usable it was? Thank you! – tonek Apr 28 '11 at 20:09
@tonek - We used Dokan, and well, playing with Windows Explorer and Filesystem issues is tough, but i think dokan is the best free option. If you want a paid one, go for Eldos. – HyLian May 3 '11 at 10:55
Had anyone tried codeproject.com/KB/winsdk/Galaxy_Toolkit.aspx ? I not yet give it a try, but from description, it is doing the similar thing. – VHanded Aug 18 '11 at 7:05

to use the SUBST command in a script launched by your app could be an option.

share|improve this answer
Not for remote storage – Blorgbeard Jul 8 '09 at 9:21
subst is a good option, but as long i would to implement a kind of middle layer, i would like to "catch" read and write events. I think that with subst I cannot implement that. Maybe i can make a "daemon" program which continously monitor the folder "substituted", but i prefer another option. – HyLian Jul 8 '09 at 9:44

MAP DRIVE : http://compnetworking.about.com/od/windowsxpnetworking/ht/mapnetworkdrive.htm

Virtual CD /DVD Drive http://www.associatedcontent.com/article/420958/how_to_create_a_virtual_drive_in_windows.html

Virtual Hard Drive use Virtual PC 2007

share|improve this answer
Thanks for your response but that's not exactly what i want :) – HyLian Jul 8 '09 at 9:54

You could write a Shell NameSpace Extension, allowing you to represent anything as a drive (with subfolders, files, custom menus and whatnot), but you'd have to build all functionality from scratch. The upside is there are a lot of samples on the net, like this one.

share|improve this answer
1  
However, these objects only exist at Shell (Explorer) level. You cannot use them in CreateFile() calls. – MSalters Jul 14 '09 at 10:54

I'm now seeing the possibility of take another aproach.

If you has used TortoiseSVN you know what i'm talking about.

As tortoise does, when you open a folder, it scans for .svn folders inside and make the synchronize between local and svn repository changing the file icons, etc...

Maybe I can make a "daemon" program that scans some root folder of a drive and make things with the files.

With this aproach, How can i make an explorer (not-IE) extension to check the contents of a folder everytime you open one?

Thanks again :)

share|improve this answer
Tortoise is implemented as an icon handler, so Windows queries it for effectively every file on the disk. There's no remote synchronization involved. I would advise against the same approach for your case. – ChrisV Jul 9 '09 at 19:19

Callback File System, mentioned above, is a supported product with a comprehensive feature set, samples and support.

share|improve this answer
Unfortunately it's a black box and costs money. – aloneguid Dec 30 '10 at 22:51

If you (or someone else) still mind coding the driver itself, there are several opensource and working prototypes already:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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