setft/setft.go

13 lines
177 B
Go
Raw Permalink Normal View History

2021-03-26 19:21:06 +08:00
// +build !windows
package setft
import (
"os"
"time"
)
func SetFileTime(path string, atime, ctime, mtime time.Time) (err error) {
return os.Chtimes(path, atime, mtime)
}