การวิเคราะห์คุณสมบัติของไฟล์ ZIP


17

ฉันมีไฟล์ ZIP และฉันต้องการตรวจสอบว่ามันถูกบีบอัดอย่างไร (อัลกอริทึมเฉพาะคุณสมบัติที่ใช้ในการใช้อัลกอริทึมนั้นเป็นต้น) ฉันจะทำสิ่งนี้ได้อย่างไร

คำตอบ:


16

zipinfo(จากInfoZIP ) จะบอกคุณมากมายเกี่ยวกับไฟล์

ตัวอย่างเอาต์พุตจาก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โปรแกรม (โดยปกติแล้วทั้งสองไบนารีจะเหมือนกันหรือเชื่อมโยงซึ่งกันและกัน) คุณสามารถเรียกใช้unzip -Zเพื่อรับzipinfoฟังก์ชั่นของ ดังนั้นหากการติดตั้งของคุณไม่ควรมี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
Ivan Chau

11

zipinfoคำสั่งสามารถจริงจะทำงานบน Windows โดยใช้unzip -Zคำสั่งตามที่ระบุไว้ในเอกสารที่เก็บข้อมูลของซิป

สร้างไฟล์ชุด "zipinfo.bat" ด้วยคำสั่งนี้ภายใน:

unzip.exe -Zsvh %1

และคุณzipinfoทำงานบน Windows


1
คำสั่งนี้ทำงานบน CentOS / Linux ด้วยเช่นกันหลังจากลบ. exe
Aditya Kumar Pandey
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.