如何在没有 Manifest.mbdx 的 iOS 5.0 beta 2 中解析 Manifest.mbdb 文件
我有一个用 iOS 5 beta2(还有 iTunes 10.5 beta)制作的备份。但令我惊讶的是,它不包含 mbdx 文件。
mbdb
文件看起来与以前的格式相同。如果没有 Manifest.mbdx
,如何匹配文件 ID 和文件名?
I have a backup I made with iOS 5 beta2 (with iTunes 10.5 beta also). But to my surprise, it doesn't contain an mbdx file.
The mbdb
file looks same as previous format. How can I match the file ID and file name without Manifest.mbdx
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
备份文件夹中的十六进制文件名是附加到域的文件路径的 SHA 哈希值,中间有一个“-”。因此“DomainName-/path/filename.png”的哈希值将与正确的文件匹配。
注意:应用程序文件的域以
AppDomain-
为前缀,例如AppDomain-com.supercrazyawesome.myapp
。确保在计算 SHA 哈希值时包含完整的字符串。The hex file name in the backups folder is the SHA hash of the file path appended to the domain, with a "-" in between. So the hash of "DomainName-/path/filename.png" will match to the correct file.
NOTE: App files have their domains prefixed with
AppDomain-
, likeAppDomain-com.supercrazyawesome.myapp
. Make sure you include that full string when calculating the SHA hash.