7zip 压缩同一文件结果略有不同
我正在使用 7za 命令行
目录 2010_05_07 中的文件 dfat_clist.xls
目录 2010_05_08 中的相同 dfat_clist.xls
Zip 在 xls 文件所在的同一目录中创建
string pars = "a -tzip \"" + Path.Combine( SourceDir,ZipName) + "\" \"" + Path.Combine( SourceDir, Mask ) + "\"" ;
给 7za 的参数是 zip 和 xls 的完整路径。 由于某种原因,目录 2010_05_07 和 2010_05_8 的几个字节分别是不同的 A7 和 A8 值。如何获得相同的结果以及出于好奇导致此问题的原因。
I am using 7za command line
File dfat_clist.xls in directory 2010_05_07
The same dfat_clist.xls in directory 2010_05_08
Zips are created in the same directory where the xls files resides
string pars = "a -tzip \"" + Path.Combine( SourceDir,ZipName) + "\" \"" + Path.Combine( SourceDir, Mask ) + "\"" ;
Parameters given to 7za are full paths for zip and xls.
For some reason a couple of bytes are different A7 and A8 values for directories 2010_05_07 and 2010_05_8 respectively. How to achieve identical results and out of curiosity what causes this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解这个问题,您在不同的文件夹中有两个相同的 XLS 文件,并且您想知道为什么这两个 7zip 文件不同?
假设您没有将目录名称存储在 zip 中,那么您可能遇到了与我相同的问题(请参阅 '7zip 从相同的输入中产生不同的输出')。
Mofi 接受的答案可能会有所帮助。
If I understand the question you have two identical XLS files in different folders and you want to know why the two 7zip'd files are different?
Assuming that you aren't storing the directory name in the zip then you've probably hit the same problem I had (see '7zip produces different output from identical input').
The accepted answer from Mofi might help.