Created
December 1, 2016 22:58
-
-
Save godwhoa/a5166ee1853e9e6051135f4eff2398f5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Copyright 2012 The Go Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
// +build !plan9 | |
package main | |
import ( | |
"log" | |
"github.com/fsnotify/fsnotify" | |
) | |
func ExampleNewWatcher() { | |
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(".") | |
if err != nil { | |
log.Fatal(err) | |
} | |
<-done | |
} | |
func main() { | |
ExampleNewWatcher() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment