ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# .appendFileSync ### FileSystemManager.appendFileSync(string filePath, string|ArrayBuffer data, string encoding) > 支持版本 >= 2.1.0 FileSystemManager.appendFile 的同步版本 #### 参数 ##### string filePath 要追加内容的文件路径 ##### string|ArrayBuffer data 要追加的文本或二进制数据 ##### string encoding 指定写入文件的字符编码 **encoding 的合法值** 值说明asciibase64binaryhexucs2/ucs-2/utf16le/utf-16le以小端序读取utf-8/utf8latin1#### 错误 错误码错误信息说明fail no such file or directory, open ${filePath}指定的 filePath 文件不存在fail illegal operation on a directory, open "${filePath}"指定的 filePath 是一个已经存在的目录fail permission denied, open ${dirPath}指定的 filePath 路径没有写权限fail sdcard not mounted指定的 filePath 是一个已经存在的目录> 原文: <https://developers.weixin.qq.com/minigame/dev/api/file/FileSystemManager.appendFileSync.html>