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

     1  //go:build !windows
     2  
     3  package local
     4  
     5  import (
     6  	"time"
     7  )
     8  
     9  const haveSetBTime = false
    10  
    11  // setBTime changes the birth time of the file passed in
    12  func setBTime(name string, btime time.Time) error {
    13  	// Does nothing
    14  	return nil
    15  }