Files
ZipArchive/SSZipArchive.h
T

20 lines
498 B
Objective-C
Raw Normal View History

2010-07-21 18:05:38 -05:00
//
2010-08-19 15:27:48 -05:00
// SSZipArchive.h
// SSZipArchive
2010-07-21 18:05:38 -05:00
//
// Created by Sam Soffes on 7/21/10.
2010-08-19 15:27:48 -05:00
// Copyright Sam Soffes 2010. All rights reserved.
2010-07-21 18:05:38 -05:00
//
// Based on ZipArchive by aish
// http://code.google.com/p/ziparchive
//
2010-08-19 15:27:48 -05:00
@interface SSZipArchive : NSObject {
2010-07-21 18:05:38 -05:00
}
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination;
2010-07-23 10:41:46 -05:00
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination overwrite:(BOOL)overwrite password:(NSString *)password error:(NSError **)error;
2010-07-21 18:05:38 -05:00
@end