Created
January 13, 2023 11:41
-
-
Save pablodz/e72fb4f1c5fd05d12d2182eb0668eccd to your computer and use it in GitHub Desktop.
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 example | |
import "github.com/pablodz/inotifywaitgo/inotifywaitgo" | |
func Example() { | |
dir := "./my_files" | |
files := make(chan []byte) | |
errors := make(chan []byte) | |
go inotifywaitgo.WatchPath(&inotifywaitgo.Settings{ | |
Dir: dir, | |
OutFiles: files, | |
ErrorChan: errors, | |
Options: &inotifywaitgo.OptionsInotify{ | |
Recursive: true, | |
Events: []string{inotifywaitgo.EventCloseWrite}, | |
Monitor: true, | |
}, | |
Verbose: true, | |
}) | |
loopFiles: | |
for { | |
select { | |
case file := <-files: | |
println(string(file)) | |
case err := <-errors: | |
println(string(err)) | |
break loopFiles | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
github.com/pablodz/inotifywaitgo