如何实现基于文件类型的文件系统?

发布于 2024-10-11 07:45:45 字数 224 浏览 9 评论 0原文

我想从本质上做到这一点,以便您永远不需要解压缩/解压缩任何文件。目前,我有一个 Dokan 文件系统,可以在给定特定 zip 文件的情况下执行此操作,但我想知道如何使其适用于所有文件。意思是,我希望能够编译一个具有“fopen("test.zip/1.jpg", "rb");”的程序。我认为如果我在 shell 资源管理器中浏览,Shell 扩展可以将文件动态加载到文件系统中,但这对我使用 fopen 示例没有帮助。有什么想法吗?

I want to essentially make it so that you never need to unzip/unrar any files. Currently, I have a Dokan filesystem which can do it given a specific zip file but I wanted to know how I can make it apply to all files. Meaning, I want to be able to compile a program that has "fopen("test.zip/1.jpg", "rb");". I think that a Shell Extension would work for dynamically loading the file into the filesystem IF I were browsing in the shell explorer but that doesnt help me with the fopen example. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懒猫 2024-10-18 07:45:45

您想要做的事情可以在文件系统过滤器驱动程序的帮助下使用,该驱动程序将跟踪目录枚举请求并报告目录而不是 ZIP 文件。然后该驱动程序将创建虚拟文件并从 ZIP 存档中获取数据。我应该说,有相当多的内核模式工作。而且文件系统过滤驱动程序不是文件系统驱动程序,因此 dokan 根本无法帮助您。

What you want to do can be used with help of file system filter driver, which would track directory enumeration requests and report directories in place of ZIP files. Then this driver would create virtual files and take the data from ZIP archives. Quite a lot of kernel-mode work, I should say. And file system filter driver is not a file system driver, so dokan won't help you at all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文