1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 07:43:35 +00:00
Files
rclone/backend/local/setbtime.go
Nick Craig-Wood 84b64dcdf9 Revert "Merge commit from fork"
This reverts commit 1e2b354456.
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
}