FileSystemManager.openSync
FileSystemManager.open 的同步方法
参数
参数 | 类型 | 默认值 | 必填 | 说明 | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
filePath | string | 是 | 文件路径 (本地路径) | ||||||||||||||||||||||||||||
flag | string | r | 否 | 文件系统标志,默认值: 'r' | |||||||||||||||||||||||||||
|
返回值
string fd
文件描述符
Example
ts
const fs = ek.getFileSystemManager()
try {
const fd = fs.openSync({ filePath: `${ek.env.USER_DATA_PATH}/hello.txt`, flag: 'a+' })
console.log(fd)
} catch (e) {
console.log(e)
}