Akihiro Suda 5a1b06d7fd rerun vndr 8 vuotta sitten
..
LICENSE f2614f2107 project: use vndr for vendoring 8 vuotta sitten
README.md 5a1b06d7fd rerun vndr 8 vuotta sitten
fen.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten
fsnotify.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten
inotify.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten
inotify_poller.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten
kqueue.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten
open_mode_bsd.go f2614f2107 project: use vndr for vendoring 8 vuotta sitten
open_mode_darwin.go f2614f2107 project: use vndr for vendoring 8 vuotta sitten
windows.go 553b0b9731 vendor: update package for solaris support 8 vuotta sitten

README.md

File system notifications for Go

GoDoc Go Report Card Coverage

Go 1.3+ required.

Cross platform: Windows, Linux, BSD and OS X.

Adapter OS Status
inotify Linux 2.6.27 or later, Android* Supported Build Status
kqueue BSD, OS X, iOS* Supported Build Status
ReadDirectoryChangesW Windows Supported Build status
FSEvents OS X Planned
FEN Solaris 11 In Progress
fanotify Linux 2.6.37+
USN Journals Windows Maybe
Polling All Maybe

* Android and iOS are untested.

Please see the documentation for usage. Consult the Wiki for the FAQ and further information.

API stability

fsnotify is a fork of howeyc/fsnotify with a new API as of v1.0. The API is based on this design document.

All releases are tagged based on Semantic Versioning. Further API changes are planned, and will be tagged with a new major revision number.

Go 1.6 supports dependencies located in the vendor/ folder. Unless you are creating a library, it is recommended that you copy fsnotify into vendor/github.com/fsnotify/fsnotify within your project.

Contributing

Please refer to CONTRIBUTING before opening an issue or pull request.

Example

See example_test.go.

Related Projects