I am using SSZipArchive for iOS. Is there a possibility to get the filename of every file unzipped with:
[SSZipArchive unzipFileAtPath:zipFile toDestination:docDir delegate:self];
I tried to get it with
- (void)zipArchiveDidUnzipArchiveFile:(NSString *)zipFile entryPath:(NSString *)entryPath destPath:(NSString *)destPath
and
- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath unzippedFilePath:(NSString *)unzippedFilePath
but sadly both functions are not called.