您的位置:首页 > 其它

Windows平台下使用Dokan实现文件系统的开发

2016-11-21 19:28 1856 查看
Windows平台下的Dokan类似于Linux平台下的FUSE文件系统开发,使用Dokan进行文件系统的开发可以按照用户的需求自定义,并且整个过程不需要用户去实现Windows底层硬件驱动文件的设计,Dokan已经帮用户实现了对Windows底层硬件的调用,用户只需要安装Dokan file system driver (dokan1.sys)

register Dokan mount service (mounter.exe) and several libraries. The detailed list of files installed is as follows:


System
global

SystemFolder\dokan1.dll Dokan user mode library
SystemFolder\dokannp1.dll Dokan Network Provider
SystemFolder\drivers\dokan1.sys Dokan File System Driver


Program Files x86 / x64

ProgramFilesFolder\Dokan\DokanLibrary\dokanctl.exe Dokan control program
ProgramFilesFolder\Dokan\DokanLibrary\dokan1.lib Dokan import library
ProgramFi
a39d
lesFolder\Dokan\DokanLibrary\dokan.h Dokan library header
ProgramFilesFolder\Dokan\DokanLibrary\dokanfuse1.lib Dokan Fuse static library
ProgramFilesFolder\Dokan\DokanLibrary\README.url Dokan documentation link

You can use Add/Remove programs in Control Panel to uninstall Dokan. It is required to restart your computer after uninstallation.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  windows 文件系统 Dokan