1
0
mirror of https://github.com/go-task/task.git synced 2025-03-23 21:29:29 +02:00
task/vendor/github.com/radovskyb/watcher/samefile_windows.go
2019-01-19 19:25:49 -02:00

13 lines
225 B
Go

// +build windows
package watcher
import "os"
func sameFile(fi1, fi2 os.FileInfo) bool {
return fi1.ModTime() == fi2.ModTime() &&
fi1.Size() == fi2.Size() &&
fi1.Mode() == fi2.Mode() &&
fi1.IsDir() == fi2.IsDir()
}