virtual-drive

C#: Create a virtual drive in Computer

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. ...

How to add a virtual driver like CD Emulation in Windows Explorer

I'm not familiar with kernel driver development, so I want to know if there are other easy ways to add a virtual driver like CD Emulation in Windows Explorer. ...

Cross OS virtual drive functionality

Looking for online resources to implement a virtual drive functionality similar to ones implemented in products listed The solution should be cross OS (win, pc, linux) preferably using a well behaving framework. Currently the answer to this question is widely dispersed with no clear option on what to use: Current suggestions I've foun...

How can I easily add storage to a VirtualBox machine with XP installed?

When I installed Windows XP on a VirtualBox machine, I made the hard drive only 10 GB since and assumed it would expand in size (as do hard drives in VMWare as far as I can remember, isn't this true?). In any case, I'm trying to install Visual Studio 2010 beta on this Virtual Box XP image and it has run out of disk space. Googling for ...

Making(programming) virtual drives on windows XP

Ahoy, I'd like to mount a "virtual drive" myself on Windows XP, I guess using the windows API. What I thought about would be like a server interface, meaning explorer.exe would send "queries", like, list directory, or get file through a pipe or whatever... I know some programs do it, maybe not the way I think it is done, but what the ...

Out of space on NTFS disk after a series of same-sized files creation/deletion

Hi all, I've ran into a really weird problem while working on a large project. I write a bunch of same-size files on a partition (tried both RAM disks and virtual disks created via diskmgmt.msc). When there is not enough free space to fit another file (as reported by GetDiskFreeSpaceExW), I delete one (only one) of the previously create...

Can I create or mount a virtual drive

Is this feasible to mount or create a drive using C#. If So , Can we use a redirector with the Virtual Drive? For example , When I will click on the drive , it should be redirected to my code which will in-turn connect to webDav Server and get the list of files and folders. ...