v0.14.1
1 file changed
tree: 99e85d67edf57bb8a54acd531071c2d6c536d139
  1. .gitignore
  2. .travis.yml
  3. AUTHORS
  4. CHANGELOG.md
  5. CONTRIBUTING.md
  6. example_test.go
  7. fsnotify.go
  8. fsnotify_bsd.go
  9. fsnotify_darwin_test.go
  10. fsnotify_linux.go
  11. fsnotify_open_bsd.go
  12. fsnotify_open_darwin.go
  13. fsnotify_symlink_test.go
  14. fsnotify_test.go
  15. fsnotify_windows.go
  16. LICENSE
  17. README.md
README.md

File system notifications for Go

Coverage GoDoc

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

Please see the documentation for usage. The Wiki contains an FAQ and other information.

API stability

The fsnotify API has changed from what exists at github.com/howeyc/fsnotify (GoDoc).

Further changes are expected. You may use gopkg.in to lock to the current API:

import "gopkg.in/fsnotify/fsnotify.v0"

A new major revision will be tagged for any future API changes.

Contributing

Send questions to golang-dev@googlegroups.com. Request features and report bugs using the GitHub Issue Tracker.

A future version of Go will have fsnotify in the standard library, therefore fsnotify carries the same LICENSE as Go. Contributors retain their copyright, so we need you to fill out a short form before we can accept your contribution: Google Individual Contributor License Agreement.

Please read CONTRIBUTING before opening a pull request.

Example

See example_test.go.