Detect File Changes in Go using Status Polling
In Go, you can detect when a file changes using status polling.虽然GO不提供与文件更改通知的Unix fcntl()函数的直接等效词,但状态轮询提供了一个跨平台解决方案:
func watchfile(filepath string)错误{ 初始安装,err:= os.stat(filepath) 如果err!= nil { 返回错误 } 为了 { stat,err:= os.stat(filepath) 如果err!= nil { 返回错误 } 如果stat.size()!= prinitstat.size()|| stat.modtime()!= primatstat.modtime(){ 休息 } 时间。 } 返回无 }此解决方案不提供系统调用的效率,而是提供了一种在所有平台上都起作用的方法,并且在各种用例中都可以。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3