You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 8, 2022. It is now read-only.
package main
import (
// "bytes"
"fmt"
"github.com/howeyc/fsnotify"
"log"
//"os/exec"
//"strings"
)
func main() {
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.Fatal(err)
}
done := make(chan bool)
// Process events
go func() {
for {
select {
// it is called twice when one file is modified in windows !!
case ev := <-watcher.Event:
fmt.Println(ev)
case err := <-watcher.Error:
log.Println("error:", err)
}
}
}()
err = watcher.Watch("c:\\test")
if err != nil {
log.Fatal("not exists")
}
<-done
watcher.Close()
}