"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Detect File Changes in Go Using Status Polling?

How Can I Detect File Changes in Go Using Status Polling?

Posted on 2025-02-16
Browse:580

How Can I Detect File Changes in Go Using Status Polling?

Detect File Changes in Go using Status Polling

In Go, you can detect when a file changes using status polling. While Go does not offer a direct equivalent to the Unix fcntl() function for file change notifications, status polling provides a cross-platform solution:

func watchFile(filePath string) error {
    initialStat, err := os.Stat(filePath)
    if err != nil {
        return err
    }

    for {
        stat, err := os.Stat(filePath)
        if err != nil {
            return err
        }

        if stat.Size() != initialStat.Size() || stat.ModTime() != initialStat.ModTime() {
            break
        }

        time.Sleep(1 * time.Second)
    }

    return nil
}

Usage:

doneChan := make(chan bool)

go func(doneChan chan bool) {
    defer func() {
        doneChan 

This solution doesn't offer the efficiency of a system call but provides a simple approach that works on all platforms and may suffice for various use cases.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3