github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/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  }