Version: 3.x
Stats
描述文件状态的对象
#
方法参数 | 类型 | 说明 |
---|---|---|
lastAccessedTime | number | 文件最近一次被存取或被执行的时间,UNIX 时间戳,对应 POSIX stat.st_atime |
lastModifiedTime | number | 文件最后一次被修改的时间,UNIX 时间戳,对应 POSIX stat.st_mtime |
mode | string | 文件的类型和存取的权限,对应 POSIX stat.st_mode |
size | number | 文件大小,单位:B,对应 POSIX stat.st_size |
#
isDirectory判断当前文件是否一个目录
#
API 支持度API | 微信小程序 | H5 | React Native |
---|---|---|---|
Stats.isDirectory | ✔️ |
#
isFile判断当前文件是否一个普通文件
#
API 支持度API | 微信小程序 | H5 | React Native |
---|---|---|---|
Stats.isFile | ✔️ |
#
API 支持度API | 微信小程序 | H5 | React Native |
---|---|---|---|
Stats.isDirectory | ✔️ | ||
Stats.isFile | ✔️ |