MAC解压缩zip文件

Mac系统解压缩zip文件,主要有以下方法:

  1. 直接双击解压缩
  2. 打开终端,通过如下命令进行解压缩
$:unzip 文件名

注:当使用unzip命令解压缩可能会出现如下错误

$:unzip EasyConnectVPN.zip
Archive:  EasyConnectVPN.zip
  inflating: EasyConnectInstaller.exe
error:  cannot create ��+������.png
        Illegal byte sequence
error:  cannot create +��+��VPN�+θ-ͦ�.docx

此时可参考方案3,使用ditto命令。

3.使用ditto命令

# 后面参数:xxx.zip是待解压缩文件名, xx为解压后的文件夹名称
$:ditto -V -x -k --sequesterRsrc --rsrc xxx.zip xx

你可能感兴趣的:(Mac)