mirror of
https://github.com/go-task/task.git
synced 2024-12-16 10:59:23 +02:00
0f24fd593e
- add watch - remove fsnotify - update others
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()
|
|
}
|