Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
8k views

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) { ...
12
votes
9answers
12k views

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 ...
10
votes
10answers
1k views

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 ...
7
votes
3answers
243 views

Virtual drives in .NET?

Is there any easy library for .NET to mount virtual drives? I need to mount an archive in a virtual drive and, most likely, use a virtual file system. The archive format does not support folders so ...
6
votes
2answers
189 views

Emulate a hard drive in Linux

I have developed a FUSE-based file system as part of a research project and now have to study the actual read/write requests that are received by the hard drive. In an attempt to do this, I am looking ...
5
votes
2answers
2k views

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 ...
3
votes
5answers
535 views

Access Gmail Drive through C# .NET

First, let me tell you about Gmail Drive: http://en.wikipedia.org/wiki/GMail_Drive Now what I want is to store some data in a text file or so, timely to this GMail Drive. I am looking for your help ...
2
votes
4answers
199 views

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

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 ...
1
vote
1answer
81 views

Create a fake virtual drive (to handle file I/O to that drive) [closed]

Possible Duplicate: C#: Create a virtual drive in Computer My aim is to create a fake virtual drive to share on the network. The purpose of this fake drive is simply to receive files ...
1
vote
4answers
87 views

Windows virtual disk for remote web service

I need to implement a Windows Virtual Disk that is visible as a separate disk device in Windows Explorer and transfer all files/dir transferred forth and back to a remote WebService - sth like a ...
1
vote
6answers
411 views

Visual Studio ISO files downloaded, how do I run? DO I need virtual drive tool?

So I am totally new to this. I have Visual Studio 2010 Pro on a DVD disc, but it is an ISO image, and I wanted to run this on my home pc in place of 2010 Express Edition. So first of all, can I run ...
1
vote
1answer
241 views

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, ...
1
vote
3answers
563 views

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.
0
votes
3answers
114 views

How do I write a driver for a Virtual CD Drive or a CD Emulation drive?

I want to develop driver for a Virtual CD Drive or a CD Emulation drive. How do I go about starting? I found these links these links from the MSDN: Windows Driver Kit Introduction to the Windows ...
0
votes
1answer
133 views

Why does installing a device driver from a virtual drive fail in Windows 7?

I have a driver that needs to be installed from a virtual drive. I am able to install this driver (*.sys) from the normal directory, but when I try to install it from a virtual drive it does not ...
-1
votes
1answer
110 views

Formatting a Drive Programatically

I have used a library to create a virtual hard-disk drive, but the problem is that I create it unformatted. At runtime, as soon as I create the disk, it prompts me asking if I would like to format the ...