상태 폴링을 사용하여 Go에서 파일 변경 감지
Go에서는 상태 폴링을 사용하여 파일이 변경되는 시기를 감지할 수 있습니다. Go는 파일 변경 알림을 위해 Unix fcntl() 함수와 직접적으로 동등한 기능을 제공하지 않지만 상태 폴링은 크로스 플랫폼 솔루션을 제공합니다.
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 }
사용법:
doneChan := make(chan bool) go func(doneChan chan bool) { defer func() { doneChan <- true }() err := watchFile("/path/to/file") if err != nil { fmt.Println(err) } fmt.Println("File has been changed") }(doneChan) <-doneChan
이것은 솔루션은 시스템 호출의 효율성을 제공하지는 않지만 모든 플랫폼에서 작동하고 다양한 사용 사례에 충분할 수 있는 간단한 접근 방식을 제공합니다.
위 내용은 상태 폴링을 사용하여 Go에서 파일 변경 사항을 어떻게 감지할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!