Giter Club home page Giter Club logo

Comments (5)

howeyc avatar howeyc commented on September 28, 2024

I'll take a look. Assuming this is Linux?
But I'll check others to see if I can reproduce.

from fsnotify.

edwardxie avatar edwardxie commented on September 28, 2024

Hi,
I also encountered the same problems such,we do the test, all the normal,
but, the problem to coding listener, such as code:
package main

import (
"flag"
"log"
"net/http"

"github.com/howeyc/fsnotify"

)

func main(){
var httpListen = flag.String("http", "127.0.0.1:8080", "host:port to listen on")

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

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

        }
    }
}()

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

    log.Printf("Open your web browser and visit http://%s/", *httpListen)
log.Fatal(http.ListenAndServe(*httpListen, nil))

}

Run it output:

2012/07/03 13:43:29 Open your web browser and visit http://127.0.0.1:8080/
2012/07/03 13:43:33 event: "/home/myname": CREATE
2012/07/03 13:43:33 event: "/home/myname": MODIFY
2012/07/03 13:43:33 event: "/home/myname": MODIFY
2012/07/03 13:43:45 event: "/home/myname": CREATE
2012/07/03 13:43:45 event: "/home/myname": MODIFY
2012/07/03 13:43:45 event: "/home/myname": MODIFY
2012/07/03 13:43:45 event: "/home/myname": MODIFY
gedit editor dir /home/myname one file, used two to save.......

Is this normal?or a problem with my program?

my OS is fedora17

Look forward to answering. thanks.

from fsnotify.

DisposaBoy avatar DisposaBoy commented on September 28, 2024

on Linux at least, the IN_MODIFY event AFAICS is working as expected. If you're only interested in the fact that someone just saved the file then you probably want to listen for IN_CLOSE_WRITE

from fsnotify.

rbhaddon avatar rbhaddon commented on September 28, 2024

My Linux 3.0 x64 and Win7 x64 machines at work yield double events. But on my Win7 x64 at home, it works great. I'll double chek my code. It's very possible I am doing something stupid!


Pithy comment here.

On Jul 2, 2012, at 6:04 PM, Chris [email protected] wrote:

I'll take a look. Assuming this is Linux?
But I'll check others to see if I can reproduce.


Reply to this email directly or view it on GitHub:
#10 (comment)

from fsnotify.

dahankzter avatar dahankzter commented on September 28, 2024

I get double events consistently on x64 Ubuntu 12.04 Go1 and "inotifywait" yields only 1 event for the same "event".

from fsnotify.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.