fsWatch 方法

Stream<FileSystemEvent> fsWatch(
  1. String path,
  2. int events,
  3. bool recursive
)

返回一个 Stream 流式,包含 FileSystemEvent 事件。

当此覆盖被安装时,此函数将覆盖 FileSystemEntity.watch() 的行为。

实现

Stream<FileSystemEvent> fsWatch(String path, int events, bool recursive) {
  return _FileSystemWatcher._watch(path, events, recursive);
}