1
mirror of https://github.com/rclone/rclone synced 2024-12-18 07:45:55 +01:00
rclone/backend/local/setbtime.go

17 lines
243 B
Go
Raw Normal View History

2022-05-24 19:06:16 +02:00
//go:build !windows
// +build !windows
package local
import (
"time"
)
const haveSetBTime = false
// setBTime changes the birth time of the file passed in
2022-05-24 19:06:16 +02:00
func setBTime(name string, btime time.Time) error {
// Does nothing
return nil
}