Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions Zip/ZipUtilities.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@ import Foundation

internal class ZipUtilities {

/*
Include root directory.
Default is true.

e.g. The Test directory contains two files A.txt and B.txt.

As true:
$ zip -r Test.zip Test/
$ unzip -l Test.zip
Test/
Test/A.txt
Test/B.txt

As false:
$ zip -r Test.zip Test/
$ unzip -l Test.zip
A.txt
B.txt
*/
let includeRootDirectory = true

// File manager
let fileManager = FileManager.default

Expand Down Expand Up @@ -54,7 +75,7 @@ internal class ZipUtilities {


/**
Recursive function to expand directory contents and parse them into ProcessedFilePath structs.
Expand directory contents and parse them into ProcessedFilePath structs.

- parameter directory: Path of folder as NSURL.

Expand All @@ -67,12 +88,15 @@ internal class ZipUtilities {
while let filePathComponent = enumerator.nextObject() as? String {
let path = directory.appendingPathComponent(filePathComponent)
let filePath = path.path
let directoryName = directory.lastPathComponent

var isDirectory: ObjCBool = false
fileManager.fileExists(atPath: filePath, isDirectory: &isDirectory)
if !isDirectory.boolValue {
let fileName = (directoryName as NSString).appendingPathComponent(filePathComponent)
var fileName = filePathComponent
if includeRootDirectory {
let directoryName = directory.lastPathComponent
fileName = (directoryName as NSString).appendingPathComponent(filePathComponent)
}
let processedPath = ProcessedFilePath(filePathURL: path, fileName: fileName)
processedFilePaths.append(processedPath)
}
Expand Down