-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何读取.rar多个文件? #17
Comments
可惜的是,压缩包内文件名并不支持中文,否则会报错 |
如何支持RAR5.0呢? |
看else以后的 gbk我是这么改的 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
switch (type) {
case 0x74:
const entry = yield this.parseEntry(size, offset);
this.entries.push(entry);
//offset += entry.blockSize;使用这个只能读取一个文件
offset += size;
break;
default:
offset += size;
}
The text was updated successfully, but these errors were encountered: