重定向所有文件读写
我在我的应用程序中使用虚拟文件系统 (PhysFS)。有没有办法通过这个虚拟文件系统重定向所有文件读写?我希望所有内容都能被重定向,这样即使是第三方库也可以通过这个文件系统。
是否有类似于 rdbuf 的东西,但对于所有文件 IO,无论是 C++ 流还是旧的 C FILE 对象?
编辑: 取决于操作系统
我目前感兴趣的平台是 Windows,所以我想知道如何使用 WinAPI 来实现这一点。另外,文件重定向是操作系统的常见功能吗?
I'm using a virtual file system (PhysFS) in my application. Is there any way to redirect all file reading and writing through this virtual file system? I would like everything to be redirected, such that even third-party libraries go through this file system.
Is there something similar to rdbuf
, but for all file IO, both though C++ streams and the old C FILE
objects?
Edit: OS dependent
The platform I'm currently interested in is Windows, so I'd like to know how this can be don with the WinAPI. Also, is file redirection a common feature of OSes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只有通过操作系统特定的 API,您才可能能够做到这一点。
Only through an operating-system specific API, you might be able to.