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.