fsnotify
fsnotify copied to clipboard
File system notification for Go
This is a request that came up earlier that I almost forgot about. Creating issue so I remember. Desire is to have the library send events/errors using select so that...
golang/go#44593 https://github.com/howeyc/fsnotify/blob/f0c08ee9c60704c1879025f2ae0ff3e000082c13/fsnotify_windows.go#L412
In some cases, we make sure a file change is finished before we read it. So how do you do that? Try using IN_CLOSE_WRITE instead. I'v done a lot of...
While reading file from a network drive we are getting below error. **short read in readEvents on** what changes needs to be done on networkDrive permission to get rid of...
Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name being declared. From [effective go](https://golang.org/doc/effective_go.html#commentary). PR generated...
I found out that I can not add watch, so I modified it to public, can be merge? ``` watcher, err := fsnotify.NewWatcher() ... watcher.AddWatch("/tmp/mydir", flags) ```
Hi, What are the build instructions to build fsnotify. Also trying to add s390x support,but can't find any build file to build the code.
Hi, I was referring to the below example to get used to this module as I need to watch a repo file and based on events I need to perform...
Hi, What I encounter is, the watcher can detect event in a directory when files are copied, written, deleted, or edited one by one in the folder. But when when...
OS:window7 folder create: "D:\test\新建文件夹": CREATE rename 2015/11/24 15:02:39 event: "D:\test\新建文件夹": RENAME 2015/11/24 15:02:39 event: "D:\test\test": RENAME delete 2015/11/24 15:03:12 event: "D:\test\test": DELETE MODIFY 2015/11/24 15:04:37 event: "D:\test\ww": MODIFY file create...