Получение исключения при создании zip-файла
Я хочу преобразовать мой лог-файл в zip-файл. Для этого я использую Objective-Zip. Но я получаю исключение
2018-08-02 11:53:57.901192+0530 Aglive[1076:511096] *** Terminating app due to uncaught exception 'OZZipException', reason: 'Can't open 'test.zip''
*** First throw call stack:
(0x18204b164 0x181294528 0x101371724 0x101371414 0x101109318 0x101108234 0x18b71cb20 0x18b7c5760 0x18b873aa8 0x18b866e5c 0x18b5f8464 0x181ff2cdc 0x181ff0694 0x181ff0c50 0x181f10c58 0x183dbcf84 0x18b6695c4 0x100f93f80 0x181a3056c)
libc++abi.dylib: terminating with uncaught exception of type OZZipException
Это мой код
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *filePath = [docDir stringByAppendingPathComponent:@"Logfile.txt"];
OZZipFile *zipFile= [[OZZipFile alloc] initWithFileName:@"test.zip"
mode:OZZipFileModeCreate];
OZZipWriteStream *stream= [zipFile writeFileInZipWithName:@"Logfile.txt"
compressionLevel:OZZipCompressionLevelBest];
[stream writeData:filePath];
[stream finishedWriting];
Это исключение происходит сразу после кода
OZZipFile *zipFile= [[OZZipFile alloc] initWithFileName:@"test.zip"
mode:OZZipFileModeCreate];
Я не знаю, почему возникает это исключение. Почему он пытается открыть этот файл вместо его создания?
1 ответ
Я думаю, что он не может найти путь, где создать ZIP-файл.
В файлах примеров он создает архив с:
NSString *documentsDir= [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
NSString *filePath= [documentsDir stringByAppendingPathComponent:@"test32_64.zip"];
OZZipFile *zipFile32= [[OZZipFile alloc] initWithFileName:filePath mode:OZZipFileModeCreate legacy32BitMode:YES];
Вы можете видеть, что filePath - это zip-путь, и при этом он вызывает alloc init.
Затем он добавляет файл:
OZZipWriteStream *stream= [zipFile32 writeFileInZipWithName:@"abc.txt" fileDate:[NSDate dateWithTimeIntervalSinceNow:-86400.0] compressionLevel:OZZipCompressionLevelDefault];
И, наконец, он пишет и закрывает поток и файл:
NSMutableData *writeData= [NSMutableData dataWithLength:4096];
int result= SecRandomCopyBytes(kSecRandomDefault, [writeData length], [writeData mutableBytes]);
XCTAssertEqual(0, result);
[stream writeData:writeData];
[stream finishedWriting];
[zipFile32 close];
Ответ на ваш последний вопрос заключается в том, что во всех OZZipFileMode
case (распаковать, создать и добавить) печатает тот же журнал в исключениях:
[OZZipException zipExceptionWithError:OZ_ERROR_NO_SUCH_FILE reason:@"Can't open '%@'", _fileName];