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);
}