Writing a user mode filesystem for windows?

前端 未结 4 1587
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-29 13:29

Is it possible to write a filesystem for Windows in pure usermode, or more specifically purely in managed code? I am thinking of something very similar to GMAILFS. Excluding

4条回答
  •  失恋的感觉
    2020-12-29 14:26

    Sure, you can abstract the regular file operations and have them running in the cloud (see Google Apps, Amazon S3, Microsoft Azure etc.). But if you'd like to talk to local devices - including the local HD - you'll have to use system APIs and those use drivers (system/kernel mode).

    As long as all you want is a storage service -no problem. If you want a real OS, you'll need to talk to real hardware and that means drivers.

提交回复
热议问题