HomeDocs
跳到主要内容

FileSystemManager.writeFile

简介

写文件。

使用限制

基础库 3.0.0 或更高版本支持。

参数

Object object

属性类型默认值必填说明
filePathstring要写入的文件路径 (相对路径)
datastring写入的内容,类型为 String (暂时不支持 ArrayBuffer)
encodingstringutf8只在 data 类型是 String 时有效,指定写入文件的字符编码,默认为 utf8。
合法值:
1. ascii
2. base64
3. binary
4. hex
5. ucs2 以小端序读取
6. ucs-2 以小端序读取
7. utf16le 以小端序读取
8. utf-16le 以小端序读取
9. utf-8
10. utf8
11. latin1
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数

Object res

属性类型说明
bytesWrittennumber实际被写入到文件中的字节数(注意,被写入的字节数不一定与被写入的字符串字符数相同)
successstringtrue-成功

object.fail 回调函数

参数

Object res

属性类型说明
errMsgstring错误信息
successstringfalse-失败

errMsg 说明

错误信息说明
parameter error: F10001参数不合法
fail sdcard not mounted: F10002Android sdcard 挂载失败
fail the maximum size of the file storage limit exceeded: F10004存储空间不足
fail permission denied: F10005, open ${filePath}指定的 filePath 路径没有读权限
fail no such file or directory: F10007,open ${filePath}指定的 filePath 所在目录不存在
the named is ${encoding} charset is not supported!当前字符编码不支持

示例代码

// pages/index/index.js

Page({
writeFile() {
const fs = dlt.getFileSystemManager();
fs.writeFile({
filePath: `${dlt.env.USER_DATA_PATH}/hello.txt`,
data: "some text",
encoding: "utf8",
success(res) {
console.log(res);
},
fail(res) {
console.error(res);
},
});
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.