Files
setft/setft.go

13 lines
189 B
Go

//go:build !windows && !darwin
package setft
import (
"os"
"time"
)
func SetFileTime(path string, atime, ctime, mtime time.Time) (err error) {
return os.Chtimes(path, atime, mtime)
}