use*_*449 2 compression unix zip macos
我有 2 个 zip 文件,它们是使用以下方法分割的:
zip -r -s 15 my_file.zip my_file.pdf
Run Code Online (Sandbox Code Playgroud)
现在我有2个文件:
my_file.zip
my_file.z01
我怎样才能解压它们?
我得到unzip my_file.zip
:
Archive: my_file.zip
waring (my_file.zip) zipfile claims to be last disk of a multi-part archive;
attempting to process anyway, assuming all parts have been concatenated
together in order. Expect "errors" and warnings...true multi-part support
doesn't exist yet (coming soon).
file #1: bad zipfile offset (local header sig): 4
Run Code Online (Sandbox Code Playgroud)
zip 不支持解压缩分割文件(奇怪的是),所以首先你必须在接收端“修复”它们。
zip -F my_file.zip --out unsplit.zip
Run Code Online (Sandbox Code Playgroud)
这将从分割存档中获取所有文件my_file.z*
,并将它们复制到一个名为unsplit.zip
(或任何您想要的名称)的新 zip 中。
然后您可以正常解压缩该文件。
归档时间: |
|
查看次数: |
7808 次 |
最近记录: |