vote up 10 vote down star
6

Is there any way to create a virtual drive in "(My) Computer" and manipulate it, somewhat like JungleDisk does it?

It probably does something like:

override OnRead(object sender, Event e) {
    ShowFilesFromAmazon();
}

Are there any API:s for this? Maybe to write to an XML-file or a database, instead of a real drive.

flag

5 Answers

vote up 6 vote down check

You can use the Dokan library to create a virtual drive. There is a .Net wrapper for interfacing with C#.

link|flag
vote up 4 vote down

Yes, use the classes in System.IO.IsolatedStorage

link|flag
vote up 0 vote down

The Dokan Library seems to be the answer that mostly corresponds with my question, even though System.IO.IsolatedStorage seems to be the most standardized and most Microsoft-environment adapted.

link|flag
vote up 0 vote down

How would the isolated storage create a drive icon?

link|flag
vote up 0 vote down

The contents of My Computer can include Shell Namespace Extensions. These COM objects run inside the main Explorer process, as do many other shell extensions. Using C# for such extensions is a bad idea, since your extension cannot control which CLR version Explorer.exe can use. And Microsoft allows only one CLR per process.

link|flag

Your Answer

Get an OpenID
or

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