mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
20 lines
376 B
Go
20 lines
376 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitee.com/johng/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)
|
|
}
|
|
}
|
|
} |