github.com/artpar/rclone@v1.67.3/backend/local/lchtimes.go (about)

     1  //go:build windows || plan9 || js
     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  }