FileWatcher class abstract

Watches a file and emits WatchEvents when the file has changed.

Note that since each watcher only watches a single file, it will only emit ChangeType.MODIFY events, except when the file is deleted at which point it will emit a single ChangeType.REMOVE event and then close the stream.

If the file is deleted and quickly replaced (when a new file is moved in its place, for example) this will emit a ChangeType.MODIFY event.

Implemented types
Implementers

Constructors

FileWatcher(String file, {Duration? pollingDelay})
Creates a new FileWatcher monitoring file.
factory

Properties

events Stream<WatchEvent>
The broadcast Stream of events that have occurred to the watched file or files in the watched directory.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
isReady bool
Whether the watcher is initialized and watching for changes.
no setterinherited
path String
The path to the file or directory whose contents are being monitored.
no setterinherited
ready Future
A Future that completes when the watcher is initialized and watching for changes.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited