惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - Icebird

谈谈批处理文件里的注释 Prototype速查 - Icebird Password for ReportBuilder Enterprise v10.08 Retail For Delphi 7-Lz0 [Delphi] DUnitID 0.17.4725 RSSReader JavaScript Edition [Delphi] GetClass与RegisterClass的应用一例 DelForEx v2.5 for Delphi 2007 我的Delphi开发经验谈 JBookManager v1.00.2008314 (编辑管理您的Jar电子书) Windows优化大师的一点研究 [Delphi] 发布QuickenPanel Component LINQ to JavaScript [PowerShell] SFV生成与校验 [PowerShell] 将rar文件转换为zip格式 [PowerShell] GBK简繁转换 [PowerShell] PowerShell学习脚印 JavaScript测试页面 DevExpress ExpressScheduler 快速编译批处理文件 备份工具 SmartBackup的源代码
在.NET中使用PhysFS来挂载压缩包(zip)
Icebird · 2011-04-11 · via 博客园 - Icebird

  PhysicsFS is a library to provide abstract access to various archives. It is intended for use in video games, and the design was somewhat inspired by Quake 3's file subsystem. The programmer defines a "write directory" on the physical filesystem. No file writing done through the PhysicsFS API can leave that write directory, for security. For example, an embedded scripting language cannot write outside of this path if it uses PhysFS for all of its I/O, which means that untrusted scripts can run more safely. Symbolic links can be disabled as well, for added safety. For file reading, the programmer lists directories and archives that form a "search path". Once the search path is defined, it becomes a single, transparent hierarchical filesystem. This makes for easy access to ZIP files in the same way as you access a file directly on the disk, and it makes it easy to ship a new archive that will override a previous archive on a per-file basis. Finally, PhysicsFS gives you platform-abstracted means to determine if CD-ROMs are available, the user's home directory, where in the real filesystem your program is running, etc.

  我是从改版的DOSBox里看到有这样一个技术可以实现挂载zip/7z压缩包,就想在.NET中是否能够使用呢。

  让我找到一个封装好的库 - BooGame,另外还有一个TAO (文件太大,有30多M)。

  首先下载BooGame: http://sourceforge.net/projects/boogame/files/BooGame/

  从下载的包里找到physfs.dll与Tao.PhysFs.dll,新建项目,引用Tao.PhysFs.dll,将physfs.dll放入bin与执行文件在一起。

  然后using Tao.PhysFs,BooGame里有一个FileSystem.cs,可以做参考,不过其封装得不够完善。

  首先 Fs.PHYSFS_init("init"); //这里的"init"没啥特别意义,总之传入一个字符串就可以

  然后是添加搜索路径,Fs.PHYSFS_addToSearchPath("D:\\Temp", 1); //如果有写入要求的话,写入的临时目录要先添加,否则修改过的数据无法被找到,后面的参数1是一个定值

  下面来mount一个压缩包,Fs.PHYSFS_addToSearchPath("D:\\Test.zip", 1);

  接着设置写入的临时目录:Fs.PHYSFS_setWriteDir("D:\\"); //对压缩包的文件所作的任何修改都会被存入此处指定的临时目录。

  如果临时目录与压缩包里的同一路径下都有相同的文件,则搜索路径在前的那个文件会优先被使用。

  接下来就是文件目录的通常操作了,除了是使用 Fs.PHYSFS_XXX 这样的语句外,与通常的文件操作没有太大区别。更详细的使用帮助,请参考http://192.121.234.229/manualer/programering/Tao-doc/Tao.PhysFs/Tao.PhysFs.FsMembers.html

  有心的话,可以考虑继承Steam重写一个类来简化使用。

  提示,里面的openWrite, openAppend实在不好用(需要Marshal.AllocHGlobal来分配内存),不如直接在临时目录下直接读写之。

  最后,要关闭资源:Fs.PHYSFS_deinit();

  PS: 这个版本有点老了,好像是1.0.1,现在最新的是2.0.2,从1.1开始就支持了7z格式。

  都快写完了,突思奇想,把DOSBox里带的libphysfs.dll复制过来,改名成physfs.dll,然后一试,哈哈,果然可以使用,并且支持了7z格式。

  相关文件下载:https://files.cnblogs.com/Icebird/PhysFS.net.rar