fsnotify 文件系统通知

本文介绍如何使用golang.org/x/sys的fsnotify库在Go中实现跨平台的文件系统通知,包括Linux、BSD、macOS和Windows支持的机制,如inotify、kqueue、ReadDirectoryChangesW和FSEvents等,并概述了不同平台的适配情况和未来规划。
摘要由CSDN通过智能技术生成

File system notifications for Go  

fsnotify utilizes golang.org/x/sys rather than syscall from the standard library.

跨平台:Windows、Linux、BSD 和 macOS。

AdapterOSStatus
inotifyLinux 2.6.27 or later, Android*Supported
kqueueBSD, macOS, iOS*Supported
ReadDirectoryChangesWWindowsSupported
FSEventsmacOSPlanned
FENSolaris 11In Progress
fanotifyLinux 2.6.37+Maybe
USN JournalsWindowsMaybe
PollingAllMaybe

* Android and iOS are untested.

Please see the documentation and consult the FAQ for usage information.

package main

import (
	"log"

	"github.com/fsnotify/fsnotify"
)

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

	done := make(chan bool)
	go func() {
		for {
			select {
			case event, ok := <-watcher.Events:
				if !ok {
					return
				}
				log.Println("event:", event)
				if event.Op&fsnotify.Write == fsnotify.Write {
					log.Println("modified file:", event.Name)
				}
			case err, ok := <-watcher.Errors:
				if !ok {
					return
				}
				log.Println("error:", err)
			}
		}
	}()

	err = watcher.Add("/tmp/foo")
	if err != nil {
		log.Fatal(err)
	}
	<-done
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值