-
-
Save rmetzler/e36b78935ab73e2352d9612d53e448b8 to your computer and use it in GitHub Desktop.
fsnotify test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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