ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# .readFile ### FileSystemManager.readFile(Object object) 读取本地文件内容 #### 参数 ##### Object object 属性类型默认值是否必填说明支持版本filePathstring是要读取的文件的路径encodingstring否指定读取文件的字符编码,如果不传 encoding,则以 ArrayBuffer 格式读取文件的二进制内容successfunction否接口调用成功的回调函数failfunction否接口调用失败的回调函数completefunction否接口调用结束的回调函数(调用成功、失败都会执行)**object.encoding 的合法值** 值说明asciibase64binaryhexucs2/ucs-2/utf16le/utf-16le以小端序读取utf-8/utf8latin1###### object.success 回调函数 **参数** **Object res** 属性类型说明支持版本datastring/ArrayBuffer文件内容###### object.fail 回调函数 **参数** **Object res** 属性类型说明支持版本errMsgstring错误信息**res.errMsg 的合法值** 值说明fail no such file or directory, open ${filePath}指定的 filePath 所在目录不存在fail permission denied, open ${dirPath}指定的 filePath 路径没有读权限> 原文: <https://developers.weixin.qq.com/minigame/dev/api/file/FileSystemManager.readFile.html>