Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

There was a utility a long time ago called CFAtest that was doing this quite nicely, but it has disappeared.

Basically, I am looking for a similar tool (preferably graphical) that will traverse a given path (preferably including subfolders) and test all zip files that it finds.

Decent logging options would be a plus.

share|improve this question
Which operating system? – Matteo Dec 31 '12 at 10:23

2 Answers

This will find in all subfolders the files (-type f) with the extension zip (or ZIP or Zip or zIp and so on, case is ignored, -iname) and test their integrity (unzip -t).

find -type f -iname '*.zip' -exec unzip -t {} \;
share|improve this answer
And if you are on Windows and don't have find, install Cygwin. – Daniel R Hicks Jan 23 at 12:23

It might not be quite what you asked for but there is a tool named Zip2Fix.

I haven't used it but you can download it from here:

http://leelusoft.blogspot.com/2011/06/zip2fix-10.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.