资 源 简 介
Currently file systems in Windows are integrated into the Kernel. Since implementing a traditional file system is extremely complex and difficult, presenting information seamlessly through files and folders has typically been limited to a small set of select programmers-often kernel hackers who develop at the lowest layers of a system.
A simple alternative to this issue is to use the concept of file system in user space. This approach almost trivializes the process of making anything and everything appear seamlessly as a set of files and folders. Dokan Library is similar to FUSE but works on Windows. Dokan library traps the filesystem interrupts and passes them onto the Callback functions which are implemented by a user application. Using Dokan, we demonstrate the ease of this approach by taking the example of Extended file systems (Ext2/3).
<