FileSystemManager.readFileSync
解释:读取本地文件内容的同步接口。
方法参数:String filePath, String encoding
filePath
参数说明:文件/目录路径。“本地用户文件”须以 swan.env.USER_DATA_PATH 开头(如 'swan.env.USER_DATA_PATH' + '/demo.txt'),否则认为是“代码包文件”(如 'asset/bg.jpg')。不支持相对路径。
encoding
参数说明:指定读文件的字符编码,默认 'utf8'。
encoding 的合法值
值 | 说明 |
---|---|
ascii | |
base64 | 对输入的字符串进行 base64 解码再写入 |
hex | 十六进制 |
ucs2/ucs-2/utf16le/utf-16le | 以小端序读取 |
utf-8/utf8 | |
latin1/binary | ISO-8859-1 的别名 |
同步返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
data | String | 读取结果 |
若接口调用失败,会抛出一个标准的Error
对象
代码示例
- 在 js 文件中
Page({
onLoad() {
const fs = swan.getFileSystemManager();
this.fs = fs;
},
readFileSync() {
try {
let result = this.fs.readFileSync(
`${swan.env.USER_DATA_PATH}/demo.txt`
);
console.log('readFileSync success', result);
}
catch (err) {
console.log('readFileSync fail', err);
}
}
});