3
2

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.

SwiftでコードからファイルをZip,Unzip 【iOS】

Last updated at Posted at 2020-12-03

**ZIPFoundation**をつかって、SwiftでファイルをZipに圧縮・解凍ができます。

###1、SwiftパッケージマネージャーでZIPFoundationをプロジェクトに追加。
Dependenciesに加えるのを忘れずに。
スクリーンショット 2020-12-03 10.44.19.png

###2、ZIPFoundationをインポート

import ZIPFoundation

###3、圧縮
sourceURLのファイルが圧縮され、destinationURLにZIPとして保存されます。

do {
    try FileManager.default.zipItem(at: sourceURL, to: destinationURL) // destinationURLは拡張子が.zip
} catch {
    print("Creation of ZIP archive failed with error:\(error)")
}

###4、解凍
sourceURLのZipが解凍され、destinationURL(ディレクトリ)に展開されます。

do {
    try FileManager.default.createDirectory(at: destinationURL, withIntermediateDirectories: true, attributes: nil)
    try FileManager.default.unzipItem(at: sourceURL, to: destinationURL, skipCRC32: true)
   } catch {
    print("Extraction of ZIP archive failed with error:\(error)")
   }

🐣


フリーランスエンジニアです。
お仕事のご相談こちらまで
rockyshikoku@gmail.com

Core MLを使ったアプリを作っています。
機械学習関連の情報を発信しています。

Twitter
Medium

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?