I'm looking at trying a project for class and as part of it I will need to create a "disk" to allow users to write some files (e.g. a RAM disk). I've used various languages, but I'm most familiar with Java (I could maybe use C# and get it done in time). I'm wondering what is out there that can do this.

I've looked at Commons VFS, JLAN and Alfresco and I might be able to use the latter two but I'm wondering if there are other options. Right now I'm looking at Java 7 which I read has new I/O stuff that might help... Really the main thing I need to figure out at this point is a way to map a drive. For example, AFAICT, Commons VFS would let me access files somewhere (like FTP), but how can I present this access as a drive letter or share this can be mapped?

Thanks

Update: To be more clear, what I'm trying to do (generally) is create something like Dropbox. I want to have a drive letter/share in Windows but the back-end will be something other than a local disk (like another machine on the LAN which runs a server component). I need to at least code the back-end logic to transfer data, but am unsure how to "glue" it into Windows such that it appears to be a disk or network share... It seems that using some sort of CIFS service and exposing that to the OS might make the most sense.

link|improve this question

43% accept rate
feedback

1 Answer

You can try Microsoft's own RAM disk driver, if it still works on current Windows versions: http://support.microsoft.com/kb/257405

Or if you just need a drive letter, try the subst command.

If you actually need to program a solution, the simplest way I can think of is creating a file where you emulate your own simple file system (record store) and provide some interface whereby the user can manage files. I.e. a virtual file system.

I don't know if current Windows versions have an equivalent to OS X's disk images, which would simplify things for you.

It's a little unclear what you're actually required to do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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