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