Skip to content

yl365/fsnotify

This branch is 121 commits behind howeyc/fsnotify:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 17, 2012
c0970b1 · Dec 17, 2012

History

87 Commits
Oct 9, 2012
Dec 17, 2012
Oct 9, 2012
Jul 3, 2012
Dec 17, 2012
Nov 10, 2012
Nov 1, 2012
Apr 28, 2012
Nov 2, 2012
Jul 3, 2012

Repository files navigation

File system notifications for Go

GoDoc

Cross platform, works on:

  • Windows
  • Linux
  • BSD
  • OSX

Example:

    watcher, err := fsnotify.NewWatcher()
    if err != nil {
        log.Fatal(err)
    }

    // Process events
    go func() {
        for {
            select {
            case ev := <-watcher.Event:
                log.Println("event:", ev)
            case err := <-watcher.Error:
                log.Println("error:", err)
            }
        }
    }()

    err = watcher.Watch("/tmp")
    if err != nil {
        log.Fatal(err)
    }

    /* ... do stuff ... */
    watcher.Close()

For each event:

  • Name
  • IsCreate()
  • IsDelete()
  • IsModify()
  • IsRename()

Notes:

  • When a file is renamed 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.
  • 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.

Build Status

About

File system notification for Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published