Can Dokan be used to write File System Filters in C#?
I need to write File System Filters to hide all 开发者_如何学运维files/folders. Can I use Dokan library to write it using C#?
File system drivers and file system filter drivers have different architectures. Consequently, you can't. The only option to have a FS filter without writing a kernel-mode driver (or take some other FS filter driver code and modify it) is use our CallbackFilter.
精彩评论