Is it possible to create a fake storage device by software?

I want a similar behavior like a usb stick. It should appear in the filesystem. If I put some data in it, the driver should push it over network.

Is that behavior generally possible?

I want to do that for Windows and Mac OS.

link|improve this question

3  
net use \\server\share – tenfour Nov 4 '11 at 10:23
@tenfour: Good point - using existing network filesystems might be sufficient (or not), depending on the requirements. – Piskvor Nov 4 '11 at 10:25
1  
I do not want to use another server. Let's say I do not want to push the data - this driver only manages the data or it just anything about it. – Razer Nov 4 '11 at 10:26
1  
See also Windows 2008: Virtual file system. – Raymond Chen Nov 4 '11 at 12:46
feedback

2 Answers

up vote 1 down vote accepted

What you're asking for is called a Virtual File System, and it's indeed possible. See e.g. this article for an example of making one: http://www.flipcode.com/archives/Programming_a_Virtual_File_System-Part_I.shtml

link|improve this answer
feedback

You need a virtual disk or a virtual file system. Note that "Virtual File System" can be used to define a file system kept not on physical media or it can be used to define a "gateway" between the OS and some non-FS data (such as a database).

Our company offers Virtual Storage line of products that let you create virtual disks and filesystems on Windows.

As for MacOS X - there exists free Fuse4X product for Macs. This is a fork of now-obsolete MacFUSE.

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.