Creating a File System “Driver”

后端 未结 4 781
刺人心
刺人心 2020-12-18 11:14

I\'m looking to create a \"driver\" I guess for a custom file system on physical disk for Windows. I don\'t exactly know the best way to explain it, but the device already

4条回答
  •  囚心锁ツ
    2020-12-18 11:39

    Your options are:

    1. Create a kernel mode file system driver. 9-12 months of work for experienced developer.
    2. Use a framework and do everything in user mode. A couple of weeks of work to get the prototype working. The only drawback of this approach is that it's slower, than kernel-mode driver. You can play with Dokan mentioned above, or you can use our Callback File System for commercial-grade development.

提交回复
热议问题