View on GitHub

go-fsevents

Recursive filesystem event watcher using inotify in golang

go-fsevents

GoDoc Build Status Go License: MIT   Go Report Card

About

Recursive filesystem event watcher using inotify in golang

go-fsevents provides functions necessary for monitoring filesystem events on Linux systems using the inotify interface.

Unlike other inotify packages, go-fsevents provides a recursive watcher, allowing the monitoring of directory trees easily.

UNSTABLE

The package is currently unstable, and as such should not be used in any production environment.

Many changes, additions and breaking refactors will take place between now and the stable 1.0.0 release.

You have been warned.

Features

Examples

See the examples in examples for quick and easy runnable examples of how go-fsevents can be used in your project

handlers.go describes how to use the EventHandlers interface to handle events automatically

loop.go describes how to read events from the watcher.Events channel