DirectoryEntry

继承
注解
  • @Native("DirectoryEntry,webkitFileSystemDirectoryEntry,FileSystemDirectoryEntry")

属性

filesystem FileSystem?
无设置器继承
fullPath String?
无设置器继承
hashCode int
此对象的哈希码。
无设置器继承
isDirectory bool?
无设置器继承
isFile bool?
无设置器继承
name String?
无设置器继承
runtimeType Type
表示对象的运行时类型。
无设置器继承

方法

copyTo(DirectoryEntry parent, {String? name}) Future<Entry>
继承
createDirectory(String path, {bool exclusive = false}) Future<Entry>
使用指定的 path 创建一个新的目录。如果 exclusive 为真,当返回的 Future 完成时,如果已存在具有指定 path 的目录,则将使用错误。
createFile(String path, {bool exclusive = false}) Future<Entry>
使用指定的 path 创建一个新的文件。如果 exclusive 为真,当返回的 Future 完成时,如果已存在指定 path 的文件,则将使用错误。
createReader() DirectoryReader
getDirectory(String path) Future<Entry>
检索已存在的目录项。如果 path 上不存在目录,或者 path 上的项目不是目录,则返回的 future 将导致错误。
getFile(String path) Future<Entry>
检索已存在的文件条目。如果指定路径的文件不存在或者路径指向的不是文件,返回的Future将导致错误。
getMetadata() Future<Metadata>
继承
getParent() Future<Entry>
继承
moveTo(DirectoryEntry parent, {String? name}) Future<Entry>
继承
noSuchMethod(Invocation invocation) → dynamic
访问不存在的方法或属性时调用。
继承
remove() Future
继承
removeRecursively() Future
toString() String
此对象的-string表示形式。
继承
toUrl() String
继承

运算符

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