当前位置: 首页 > 工具软件 > dokan > 使用案例 >

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

阳英朗
2023-12-01
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
    • ProgramFilesFolder\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.

 类似资料: