FileMode

File可以打开的模式。

属性

hashCode int
该对象的哈希码。
无设置器继承
runtimeType Type
表示对象运行时类型的表示。
无设置器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
继承
toString() String
该对象的字符串表示。
继承

操作符

operator ==(Object other) bool
等号操作符。
继承

常量

append → const FileMode
以读写模式打开文件的末尾。如果文件不存在,则创建文件。
read → const FileMode
仅以读取模式打开文件。
write → const FileMode
以读写模式打开文件。如果文件已存在,则覆盖文件。如果文件不存在,则创建文件。
writeOnly → const FileMode
以仅写入模式打开文件。如果文件已存在,则覆盖文件。如果文件不存在,则创建文件。
writeOnlyAppend → const FileMode
以仅写入模式打开文件的末尾。如果文件不存在,则创建文件。