1
0
mirror of https://github.com/rclone/rclone.git synced 2025-04-02 20:45:32 +02:00
rclone/backend/local/setbtime.go
Nick Craig-Wood 84b64dcdf9 Revert "Merge commit from fork"
This reverts commit 1e2b354456882ed22d8674b8bf37de55e0069514.
2024-11-14 16:20:06 +00:00

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
}