github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/local/lchtimes.go (about) 1 // +build windows plan9 2 3 package local 4 5 import ( 6 "time" 7 ) 8 9 const haveLChtimes = false 10 11 // lChtimes changes the access and modification times of the named 12 // link, similar to the Unix utime() or utimes() functions. 13 // 14 // The underlying filesystem may truncate or round the values to a 15 // less precise time unit. 16 // If there is an error, it will be of type *PathError. 17 func lChtimes(name string, atime time.Time, mtime time.Time) error { 18 // Does nothing 19 return nil 20 }