FileStat接口

在文件系统对象上调用 POSIX stat() 函数的结果。

这是一个不可变对象,表示由 stat() 调用返回的快照值。

属性

accessed DateTime
文件系统对象数据的最后一次访问时间。
final
changed DateTime
文件系统对象数据或元数据的最后更改时间。
final
hashCode int
该对象的哈希码。
无设置器继承
mode int
文件系统对象的模式。
final
modified DateTime
文件系统对象数据的最后更改时间。
final
runtimeType Type
对象运行时类型的表现。
无设置器继承
size int
文件系统对象的大小。
final
type FileSystemEntityType
基础文件系统对象的类型。
final

方法

modeString() String
将模式值作为可读字符串。
noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
继承
toString() String
此对象的字符串表示。
覆盖

运算符

operator ==(Object other) bool
相等运算符。
继承

静态方法

stat(String path) Future<FileStat>
异步调用操作系统上的 stat() 函数(或等效函数)。
statSync(String path) FileStat
调用操作系统上的 stat() 函数(或等效函数)。