local: add Metadata support #111

This commit is contained in:
Nick Craig-Wood 2022-05-24 18:06:16 +01:00
parent 22abd785eb
commit c556e98f49
15 changed files with 699 additions and 6 deletions

16
backend/local/setbtime.go Normal file
View 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
}