我正在使用react-native-zip-archive来解压缩我的文件。
这是我的源代码。
unzip(res.path(), targetPath)
.then((path) => {
RNFS.unlink(res.path())
.then(() => {
console.log('FILE DELETED');
})
// `unlink` will throw an error, if the item to unlink does not exist
.catch((err) => {
console.log(err.message);
});
})
.catch((error) => {
});
Zip文件是235MB。提取它需要大约30分钟。 反正有提高提取速度吗?
感谢您的时间。