added password check

This commit is contained in:
Dominik Arnhof
2016-07-02 18:52:36 +02:00
parent 4fde7a92dc
commit d93b03eb1a
3 changed files with 49 additions and 0 deletions
+3
View File
@@ -16,6 +16,9 @@
@interface SSZipArchive : NSObject
// Password check
+ (BOOL)isFilePasswordProtectedAtPath:(NSString *)path;
// Unzip
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination;
+ (BOOL)unzipFileAtPath:(NSString *)path toDestination:(NSString *)destination delegate:(id<SSZipArchiveDelegate>)delegate;