# wx.getFileSystemManager()
本接口仅适用于小游戏试玩,非小游戏标准接口
# 功能描述
获取全局唯一的文件管理器
与小游戏标准的文件管理器不同,因为小游戏试非常轻量且不支持本地文件系统,所以通过 wx.getFileSystemManager 获取的文件管理器示例仅有 readFile 和 readFileSync 能力。
# 方法
# FileSystemManager.readFileSync(string filePath, string encoding, number position, number length)
# 示例代码
const fs = wx.getFileSystemManager();
console.log(fs.readFileSync('playableDemo/bgm.mp3'));