From: Nathan Youngman Date: Mon, 28 Oct 2013 01:26:57 +0000 (-0600) Subject: add some new lines X-Git-Tag: v1.7.2~334^2~1 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=fed2c95acca7d8f207824cf7832deb57b7839cee;p=fsnotify.git add some new lines --- diff --git a/README.md b/README.md index aedf80b..0b620f5 100644 --- a/README.md +++ b/README.md @@ -62,18 +62,23 @@ For each event: ### FAQ **When a file is moved to another directory is it still being watched?** + No (it shouldn't be, unless you are watching where it was moved to). **When I watch a directory, are all subdirectories watched as well?** + No, you must add watches for any directory you want to watch (a recursive watcher is in the works #56). **Do I have to watch the Error and Event channels in a separate goroutine?** + As of now, yes. Looking into making this single-thread friendly (see #7) **Why am I receiving multiple events for the same file on OS X?** + Spotlight indexing on OS X can result in multiple events (see #62). A temporary workaround is to add your folder(s) to the *Spotlight Privacy settings* until we have a native FSEvents implementation (see #54). **How many files can be watched at once?** + There are OS-specific limits as to how many watches can be created: * Linux: /proc/sys/fs/inotify/max_user_watches contains the limit, reaching this limit results in a "no space left on device" error.