mirror of
https://github.com/go-task/task.git
synced 2025-01-04 03:48:02 +02:00
13 lines
225 B
Go
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()
|
||
|
}
|