fsWatch 方法
返回一个 Stream,包含 FileSystemEvent 对象。
当此覆盖安装后,该函数将覆盖 FileSystemEntity.watch()
的行为。
实现
Stream<FileSystemEvent> fsWatch(String path, int events, bool recursive) {
return _FileSystemWatcher._watch(path, events, recursive);
}
返回一个 Stream,包含 FileSystemEvent 对象。
当此覆盖安装后,该函数将覆盖 FileSystemEntity.watch()
的行为。
Stream<FileSystemEvent> fsWatch(String path, int events, bool recursive) {
return _FileSystemWatcher._watch(path, events, recursive);
}