Search code examples
c#.netwindowsvirtual-drive

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 DropBox. Do I have to implement/use a kernel driver SDK? Or is it possoible to use only shell extensions? What I need is to intercept all file/dir operations on that disk and map them to a corresponding WebService calls (file creation/deletion/move/edit and data transfer). Thanks


Solution

  • You will need a combination of kernel-mode driver and Windows Service/Application for that: