2

zipファイル標準(http://www.pkware.com/documents/casestudies/APPNOTE.TXT )によると、 zipファイルを複数のファイルに分割することもサポートしています。

      Spanned/Split archives created using PKZIP for Windows
      (V2.50 or greater), PKZIP Command Line (V2.50 or greater),
      or PKZIP Explorer will include a special spanning 
      signature as the first 4 bytes of the first segment of
      the archive.  This signature (0x08074b50) will be 
      followed immediately by the local header signature for
      the first file in the archive.  

      A special spanning marker may also appear in spanned/split 
      archives if the spanning or splitting process starts but 
      only requires one segment.  In this case the 0x08074b50 
      signature will be replaced with the temporary spanning 
      marker signature of 0x30304b50.  Split archives can
      only be uncompressed by other versions of PKZIP that
      know how to create a split archive.

      The signature value 0x08074b50 is also used by some
      ZIP implementations as a marker for the Data Descriptor 
      record.  Conflict in this alternate assignment can be
      avoided by ensuring the position of the signature
      within the ZIP file to determine the use for which it
      is intended.  

その署名をチェックする方法や、zipが複数のファイルに分割されているかどうかをチェックする他の方法はありますか?

4

1 に答える 1

2

彼らが標準で話している特定の署名、つまりPK\007\008、ライブラリソースをgrepすることでわかるように、zipfileではまったく処理されません(Python 3.2でも同じ結果が得られました)。

# grep PK /usr/lib/python2.7/zipfile.py 

stringEndArchive = "PK\005\006"
stringCentralDir = "PK\001\002"
stringFileHeader = "PK\003\004"
stringEndArchive64Locator = "PK\x06\x07"
stringEndArchive64 = "PK\x06\x06"

ですから、その目的でライブラリを使用できるとは思えません。ライブラリを拡張して、自分でその署名を見つけようとすることもできます。

于 2012-08-20T14:27:40.607 に答える