1
mirror of https://github.com/rclone/rclone synced 2025-08-20 16:01:45 +02:00
Files
rclone/backend/local/setbtime.go

16 lines
224 B
Go

//go:build !windows
package local
import (
"time"
)
const haveSetBTime = false
// setBTime changes the birth time of the file passed in
func setBTime(name string, btime time.Time) error {
// Does nothing
return nil
}