Reputation: 3659
In particular, I need to zip a directory of files, and turn that into a single file.
// put all the log files in zipDirectory into a zip file named toFile
actual fun zip(zipDirectory: String, toFile: String)
I wasn't worried about this feature, because I had glibly assumed I could pass in an objective-c object into this object's constructor, and use it to run some cocoapods code... how wrong I was!
So now I'm trying to figure out the best way to accomplish this task. Would love some ideas!
Upvotes: 0
Views: 956
Reputation: 87894
You have two options:
Upvotes: 2