gf/geg/os/gfpool/gfpool.go
2019-04-03 00:03:46 +08:00

21 lines
308 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/g/os/gfpool"
"os"
"time"
)
func main() {
for {
time.Sleep(time.Second)
if f, err := gfpool.Open("/home/john/temp/log.log", os.O_RDONLY, 0666, 60000000*1000); err == nil {
fmt.Println(f.Name())
f.Close()
} else {
fmt.Println(err)
}
}
}