FileSystemManager.unzip
2020-08-26 16:18 更新
解释:解压文件。
Web 态说明:受浏览器限制,Web 态不支持文件系统相关功能,调用该方法会执行失败回调函数。
方法参数:Object object
object
参数说明:
示例
图片示例
代码示例
<view class="wrap">
<button type="primary" bindtap="unzip">解压文件</button>
</view>
Page({
data: {
filePath: ''
},
onLoad() {
this.fileSystemManager = swan.getFileSystemManager();
swan.downloadFile({
url: 'https://b.bdstatic.com/docs/file.zip',
success: res => {
swan.showToast({
title: `文件预下载完成,临时路径为${res.tempFilePath}`,
icon: 'none'
});
// 此为 “本地临时文件” 路径。
this.data.filePath = res.tempFilePath;
// 将 “本地临时文件” 持久化成 “本地用户文件”。
this.fileSystemManager.saveFileSync(res.tempFilePath, `${swan.env.USER_DATA_PATH}/a.zip`);
}
});
},
unzip() {
this.fileSystemManager.unzip({
zipFilePath: `${swan.env.USER_DATA_PATH}/a.zip`,
targetPath: `${swan.env.USER_DATA_PATH}`,
success: res => {
swan.showToast({
title: res.errMsg,
icon: 'none'
});
console.log('unzip success', res);
},
fail: err => {
swan.showToast({
title: JSON.stringify(err),
icon: 'none'
});
console.log('unzip fail', err);
}
});
}
});
以上内容是否对您有帮助:
更多建议: