vote up -1 vote down star

Seems this would not be a deterministic thing, or is there a way to do this reliably?

flag

50% accept rate
What are you wanting a diff of? The file listing (FileA exists in one but not the other). The files' contents (FileB in the first zip has these modifications compared to the FileB in the second zip). Or all of the above? eduffy's answer may work (in Linux) if you don't care about the contents. – JMD Feb 25 at 19:33
Also, what platform? Windows, Linux, other? – JMD Feb 25 at 19:34
If you just care if the zipped files are the same then why not compare hashes? – EBGreen Feb 25 at 19:34
This is humorous. Someone asks a programming question and gets a lot of non programming answers. :) – EBGreen Feb 25 at 19:55
@Apple - You should probably post the technologies that you want to do this with. Specifically the platform and programming language that you plan to use. – EBGreen Feb 25 at 20:02

6 Answers

vote up 4 vote down

Reliable: unzip both, diff.

I have no idea if that answer's good enough for your use, but it works.

link|flag
I'm looking to avoid opening and expanding and diffing, it could be more expensive. – ApplePieIsGood Feb 25 at 19:38
Unfortunately, it's the only reliable way to do it. – R. Bemrose Feb 26 at 16:15
vote up 3 vote down

If you're using gzip, you can do something like this:

# diff <(zcat file1.gz) <(zcat file2.gz)
link|flag
Well I need to do this programmatically, and I'm not running in a unix environment (unfortunately). – ApplePieIsGood Feb 25 at 19:39
how is the solution in this answer not "programmatically" solving your problem? – hop Feb 25 at 20:15
vote up 1 vote down

Beyond compare has no problem with this.

link|flag
I wonder if they expand it behind the scenes and diff? That's the thing, hard to say with an app what it does. – ApplePieIsGood Feb 25 at 19:39
I'm pretty sure they expand behind the scenes. They have to to be able to show a side-by-side diff of two files from the zip archives. – Lieven Feb 25 at 19:42
vote up 0 vote down

Well, I imagine zdiff would be some use to you.

link|flag
vote up 0 vote down

WinMerge (windows only) has lots of features and one of them is:

  • Archive file support using 7-Zip
link|flag
vote up 0 vote down

In general, you cannot avoid decompressing and then comparing. Different compressors will result in different DEFLATEd byte streams, which when INFLATEd result in the same original text. You cannot simply compare the DEFLATEd data, one to another. That will FAIL in some cases.

But in a ZIP scenario, there is a CRC32 calculated and stored for each entry. So if you want to check files, you can simply compare the stored CRC32 associated to each DEFLATEd stream, with the caveats on the uniqueness properties of the CRC32 hash. It may fit your needs to compare the FileName and the CRC.

You would need a ZIP library that reads zip files and exposes those things as properties on the "ZipEntry" object. DotNetZip will do that for .NET apps.

link|flag

Your Answer

Get an OpenID
or

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