A file system monitor in Nim
Platform | Watching Directory | Watching File |
---|---|---|
Windows | ReadDirectoryChangesW |
polling using os.getLastModificationTime and os.fileExists |
Linux | inotify |
polling using inotify and os.fileExists |
Macos | TODO(fsevents ) |
polling using os.getLastModificationTime and os.fileExists |
BSD | Not implemented | TODO(kqueue ) |
import fsnotify
proc hello(event: seq[PathEvent]) =
echo "Hello: "
echo event
var watcher = initWatcher(1)
register(watcher, "/root/play", hello, ms = 100)
while true:
poll(watcher, 2000)