This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues/pull-requests.
mumbledj/vendor/github.com/fsnotify/fsnotify
Matthieu Grieger 1e174fde46 Update dependencies, add crypto/pkcs12 2016-07-04 10:06:28 -07:00
..
.gitignore Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
.travis.yml Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
AUTHORS Update dependencies, add crypto/pkcs12 2016-07-04 10:06:28 -07:00
CHANGELOG.md Update dependencies, add crypto/pkcs12 2016-07-04 10:06:28 -07:00
CONTRIBUTING.md Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
LICENSE Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
README.md Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
example_test.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
fen.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
fsnotify.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
inotify.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
inotify_poller.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
inotify_poller_test.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
inotify_test.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
integration_darwin_test.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
integration_test.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
kqueue.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
open_mode_bsd.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
open_mode_darwin.go Checked in vendor/ with stripped vcs data 2016-06-20 17:50:40 -07:00
windows.go Update dependencies, add crypto/pkcs12 2016-07-04 10:06:28 -07:00

README.md

File system notifications for Go

GoDoc Go Report Card Coverage

fsnotify utilizes golang.org/x/sys rather than syscall from the standard library. Ensure you have the latest version installed by running:

go get -u golang.org/x/sys/...

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, and likewise for golang.org/x/sys.

Contributing

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

Example

See example_test.go.