0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

MacでZIPファイルを展開できない時の対処方法

Posted at

MacでZIPファイルを展開しようとすると、
「エラー79 ファイルタイプかフォーマットに誤りがあります」
といった文章が出てきてファイルを展開できない、ということがありました。

その解決策をメモしておきたいと思います。

解決方法

①:まず、Macでターミナルを開く。
②:展開できないZIPファイルを置いているディレクトリまで、cdコマンドで移動
③:「unzip 展開できないファイル.zip」というコマンドを実行

ターミナル
% unzip 展開できないファイル.zip
// 結果
Archive:  展開できないファイル.zip
  inflating: ○○
  inflating: ××
  ...

これでZIPファイルが展開されます。
念の為、Finderからもファイルが解凍されているか確認してください。

参考

こちらのサイトを参考にさせていただきました。
https://itojisan.xyz/trouble/13743/

ありがとうございました。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?