mirror of
https://github.com/rclone/rclone.git
synced 2025-08-17 00:51:34 +02:00
local: add Metadata support #111
This commit is contained in:
16
backend/local/setbtime.go
Normal file
16
backend/local/setbtime.go
Normal file
@ -0,0 +1,16 @@
|
||||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package local
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const haveSetBTime = false
|
||||
|
||||
// setBTime changes the the birth time of the file passed in
|
||||
func setBTime(name string, btime time.Time) error {
|
||||
// Does nothing
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user