是否可以从7 Zip复制测试结果?


1

我有200,000个.cbr .cbz和其他压缩文件,我正在使用7 zip进行测试。到目前为止,我收到了很多CRC失败的文件,因此我想复制并粘贴结果,以便检查所有文件。

Answers:


2

从命令行运行它:

7z t "blah.zip"

7-Zip 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18

Processing archive: blah.zip

Testing     blah.txt

Everything is Ok

Size:       417220
Compressed: 66087

(数字和姓名组成)

但是实际上,从命令行运行它,然后将输出重定向到文件:

7z t "blah.zip" >> results.txt

然后,完成后,搜索所有错误-如果错误消息包含CRC错误,则将运行诸如find / I“ crc” results.txt之类的内容。


谢谢!我想知道为什么对话框本身是不可选择的,否则GUI版本也可以工作。
2008年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.