收藏
回答

FileSystemManager.writeFile 效率问题

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 需求 FileSystemManager.writeFile 微信安卓客户端 7.0.6 2.8.2

FileSystemManager.writeFile 感觉这个接口运行效率有问题,开发者工具上需要几百ms,真机上平均需要50ms。当写入大量文件到本地时,这一块会卡很久。


Log.info(`write file ${path}, buffer size [${size}]`);
 
const bufferToWrite = new Uint8Array(size);
bufferToWrite.set(window.Module.HEAPU8.subarray(buffer, buffer + size));
 
try {
    Log.info(`check path`);
    this.checkPath(path);
    Log.info(`write start`);
    fs.writeFileSync(path, bufferToWrite.buffer, `hex`);
    // fs.writeFile({ filePath: path, data: bufferToWrite.buffer, encoding: `hex` });
    Log.info(`write end`);
} catch (e) {
    Log.error(`write file ${path} failed.`);
    console.error(e);
    return 0;
}




附一个安卓运行结果:



最后一次编辑于  2019-09-16
回答关注问题邀请回答
收藏

4 个回答

  • 小程序/小游戏开发-Link
    小程序/小游戏开发-Link
    2019-09-16

    Android 上的文件接口有在优化中。

    2019-09-16
    有用 1
    回复
  • 小游戏运营专员 - 宏
    小游戏运营专员 - 宏
    2019-09-16

    您好,能否提供个可运行的代码片段,这边复现一下看看是什么问题(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2019-09-16
    有用
    回复 2
    • 2019-09-16
      https://developers.weixin.qq.com/s/AZoyZqmj77bQ
      2019-09-16
      回复
    • 2019-09-16
      手机型号,华为mate20x
      2019-09-16
      回复
  • 冯宝林
    冯宝林
    发表于移动端
    2021-08-15
    2021-08-15
    有用
    回复
  • 2019-09-16

    补充:用异步接口写大量文件时,开发者工具会占满cpu的一个核,真机上直接崩溃了

    2019-09-16
    有用
    回复 4
登录 后发表内容
问题标签