Dokan可以用来用C#编写文件系统过滤器吗?
我需要编写文件系统过滤器来隐藏所有文件/文件夹。我可以使用 Dokan 库使用 C# 编写它吗?
I need to write File System Filters to hide all files/folders. Can I use Dokan library to write it using C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件系统驱动程序和文件系统过滤器驱动程序具有不同的体系结构。因此,你不能。拥有 FS 过滤器而不编写内核模式驱动程序(或采用其他 FS 过滤器驱动程序代码并修改它)的唯一选择是使用我们的 回调过滤器。
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.