Codebase list golang-github-vbatts-go-mtree / 5bd602f6-34b2-411b-80f3-7d65781fd7d4/main lchtimes_unix.go
5bd602f6-34b2-411b-80f3-7d65781fd7d4/main

Tree @5bd602f6-34b2-411b-80f3-7d65781fd7d4/main (Download .tar.gz)

lchtimes_unix.go @5bd602f6-34b2-411b-80f3-7d65781fd7d4/mainraw · history · blame

// +build darwin dragonfly freebsd openbsd linux netbsd solaris

package mtree

import (
	"os"
	"time"

	"golang.org/x/sys/unix"
)

func lchtimes(name string, atime time.Time, mtime time.Time) error {
	utimes := []unix.Timespec{
		unix.NsecToTimespec(atime.UnixNano()),
		unix.NsecToTimespec(mtime.UnixNano()),
	}
	if e := unix.UtimesNanoAt(unix.AT_FDCWD, name, utimes, unix.AT_SYMLINK_NOFOLLOW); e != nil {
		return &os.PathError{Op: "chtimes", Path: name, Err: e}
	}
	return nil

}