gpt4 book ai didi

iphone - 那里有适用于 iOS 的 unrar 库吗?

转载 作者:可可西里 更新时间:2023-11-01 03:29:46 25 4
gpt4 key购买 nike

我想在我的 iPhone 应用程序中包含一个 unrar 文件选项。

我已经试过了https://github.com/ararog/Unrar4iOS但是这个库还不完整(有些功能还没有实现,比如 -(BOOL) unrarFileTo:(NSString*)path overWrite:(BOOL)overwrite)

谢谢。

最佳答案

我最终使用了 Unrar4ios,但我需要自己编写实际提取 rar 文件的函数:

-(BOOL) unrarFileTo:(NSString*)path overWrite:(BOOL)overwrite {

int RHCode = 0, PFCode = 0;

[self _unrarOpenFile:filename mode:RAR_OM_EXTRACT];

while ((RHCode = RARReadHeaderEx(_rarFile, header)) == 0) {

if ((PFCode = RARProcessFile(_rarFile, RAR_EXTRACT, (char *)[path UTF8String], NULL)) != 0) {
[self _unrarCloseFile];
return NO;
}

}

[self _unrarCloseFile];


return YES;
}

关于iphone - 那里有适用于 iOS 的 unrar 库吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7785659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com