ZIPファイルのプロパティの分析


17

ZIPファイルがあり、その圧縮方法(特定のアルゴリズム、そのアルゴリズムを適用するために使用されるプロパティなど)を判断したい。これどうやってするの?

回答:


16

zipinfoInfoZIPから)ファイルについて多くのことを教えてくれます。

サンプル出力zipinfo -v(「verbose」オプションを使用-v):

Archive:  /tmp/test.zip
There is no zipfile comment.

End-of-central-directory record:
-------------------------------

  Zip archive file size:                     22341 (0000000000005745h)
  Actual end-cent-dir record offset:         22319 (000000000000572Fh)
  Expected end-cent-dir record offset:       22319 (000000000000572Fh)
  (based on the length of the central directory and its expected offset)

  This zipfile constitutes the sole disk of a single-part archive; its
  central directory contains 1 entry.
  The central directory is 88 (0000000000000058h) bytes long,
  and its (expected) offset in bytes from the beginning of the zipfile
  is 22231 (00000000000056D7h).


Central directory entry #1:
---------------------------

  tmp/bookmarks.html

  offset of local header from start of archive:   0
                                                  (0000000000000000h) bytes
  file system or operating system of origin:      Unix
  version of encoding software:                   3.0
  minimum file system compatibility required:     MS-DOS, OS/2 or NT FAT
  minimum software version required to extract:   2.0
  compression method:                             deflated
  compression sub-type (deflation):               normal
  file security status:                           not encrypted
  extended local header:                          no
  file last modified on (DOS date/time):          2010 Feb 20 16:22:48
  file last modified on (UT extra field modtime): 2010 Feb 20 16:22:47 local
  file last modified on (UT extra field modtime): 2010 Feb 20 15:22:47 UTC
  32-bit CRC value (hex):                         3e84c75c
  compressed size:                                22155 bytes
  uncompressed size:                              76774 bytes
  length of filename:                             18 characters
  length of extra field:                          24 bytes
  length of file comment:                         0 characters
  disk number on which file begins:               disk 1
  apparent file type:                             text
  Unix file attributes (100600 octal):            -rw-------
  MS-DOS file attributes (00 hex):                none

  The central-directory extra field contains:
  - A subfield with ID 0x5455 (universal time) and 5 data bytes.
    The local extra field has UTC/GMT modification/access times.
  - A subfield with ID 0x7875 (Unix UID/GID (any size)) and 11 data bytes:
    01 04 e8 03 00 00 04 e8 03 00 00.

  There is no file comment.

それだけでは不十分な場合は、必要な情報を説明してください。


zipinfo機能は実際にはunzipプログラムの一部であることに注意してください(2つのバイナリは通常同一であるか、相互にリンクしています)。を呼び出しunzip -Zzipinfoの機能を取得できます。そのため、インストールにzipinfoバイナリを含める必要がない場合は、unzip -Z代わりに使用できます。


これは私が必要とするもののように見えますが、InfoZipのミラーはダウンしているように見え、ソースのみがsourceforgeで利用可能です
...-RCIX

わかった、わかった。最初にFTPの指示に従いました(わずかな変更を加えました)が、その後、ftp.info-zip.org/pub/infozip/win32から必要なものを取得できることがわかりました。
-RCIX

申し訳ありませんが、私はまだ助けが必要です:ダウンロードしたアーカイブにzipinfoが表示されません:(
RCIX

@RCIX:申し訳ありませんが、Windowsバイナリをどこで入手できるかわかりません。私はすべてのディストリビューションの一部であるLinuxを使用しています:-)。Windowsバイナリについて質問する新しい質問を投稿してください。
sleske

@ RCIX、@ sleske:zipinfoはunzipにマージされているようです。ダウンロードunz*xn-x64.exeして使用unzip.exe -Zv FILENAME.zip
イヴァンチャウ

11

zipinfoこのコマンドは、実際に使用して、Windows上で実行することができるunzip -Z情報-zipアーカイブのマニュアルに記載されているように、コマンドを。

次のコマンドを使用して、「zipinfo.bat」バッチファイルを作成します。

unzip.exe -Zsvh %1

あなたはしているzipinfoWindows上で実行されています。


1
このコマンドはCentOS / Linuxでも機能します。明らかに.exeを削除した後
Aditya Kumar Pandey
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.