how can I create Virtual Hard Drive (like Z:) that store it's files on physical hard drive (Like C:\Files).
| show 2 more comments |
|
Here is C# code to do this directly:
Sample usage:
|
|||
|
|
|
You can use subst command. Use System.Diagnostic.Process to run the subst.exe with desired parameters. Here is the command syntax:
|
|||||||||
|
|
Do it the exact same way you would map a network drive, but point it to a folder on the current machine. The only thing you have to do special is use a UNC path for the local folder. Here is a helper class |
|||
|
|
|
Not sure how to do this in C# but this should help you: Ive just tested this and works perfect On my computer have 1 hard drive devised into 2, I then proceeded to
Witch successfully map the contents of Im sure you can complete such a task within C#.. I usually use this method at work for client support to transfer and backup files before new consoles are issued to them. |
||||
|
|
closevotes, this is a perfectly valid question ? – RobertPitt Sep 20 '10 at 17:33