Skip to content

Instantly share code, notes, and snippets.

@db47h
Created July 13, 2015 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save db47h/a34fb8f25222e3dff4c4 to your computer and use it in GitHub Desktop.
Save db47h/a34fb8f25222e3dff4c4 to your computer and use it in GitHub Desktop.
fsnotify test
package main
import (
"io/ioutil"
"log"
"gopkg.in/fsnotify.v1"
)
func main() {
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
defer watcher.Close()
done := make(chan bool)
go func() {
for {
select {
case event := <-watcher.Events:
log.Println("event:", event)
if event.Op&fsnotify.Write == fsnotify.Write {
log.Println("modified file:", event.Name)
}
case err := <-watcher.Errors:
log.Println("error:", err)
}
}
}()
err = watcher.Add("/tmp/foo")
ioutil.WriteFile("/tmp/foo", []byte("hello"), 0644)
if err != nil {
log.Fatal(err)
}
<-done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment