fswatch
fswatch copied to clipboard
File/Directory Watcher for Modern C++
Results
2
fswatch issues
Sort by
recently updated
recently updated
newest added
~~~c++ #include #include #include void go() { auto watcher = fswatch("~", "/opt", "."); watcher.on(fswatch::Event::FILE_CREATED, [](auto &event) { std::cout
Hi, an awesome library, thanks. I have a problem when I point a non-existing file. ```c++ wd = inotify_add_watch(fd, root, WATCH_FLAGS); // add wd and directory name to Watch map...