Add or extend file system support under windows

可紊 提交于 2019-12-01 11:02:27

问题


I've seen that Mac Drive 7 adds HFS+ and HFS support to windows for both hard-drives and CDs, which includes handling problems like the mac partition format. Clearly that must mean that file system support in windows is extensible somehow, even if it is slow. So where could someone start to write a simple (or not) file system driver for windows? I'm having a lot of trouble googling for this because these are commonly used words.


回答1:


You need the Windows Driver Kit (WDK). The Installable File System Kit which is part of the WDK should get you started.

Good luck!




回答2:


The IFS actually primarily permits you to write file system filter drivers. It does not directly contain support for new file systems. It is necessary for doing so, but you will need to obtain a large amount of additional, complex, hard to find information about Windows File Systems from third parties.

Please be aware that a File System driver is the most complex, undocumented thing you can do in the Windows kernel. If you have no prior kernel experience but you have say ten years experience programming operating systems in C, you are looking at two to three years full time work to produce a file system driver.



来源:https://stackoverflow.com/questions/668940/add-or-extend-file-system-support-under-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!