mirror of https://github.com/restic/restic.git
16 lines
424 B
Go
16 lines
424 B
Go
package fs
|
|
|
|
import (
|
|
"github.com/restic/restic/internal/restic"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
// utimesNano is like syscall.UtimesNano, except that it does not follow symlinks.
|
|
func utimesNano(path string, atime, mtime int64, _ restic.NodeType) error {
|
|
times := []unix.Timespec{
|
|
unix.NsecToTimespec(atime),
|
|
unix.NsecToTimespec(mtime),
|
|
}
|
|
return unix.UtimesNanoAt(unix.AT_FDCWD, path, times, unix.AT_SYMLINK_NOFOLLOW)
|
|
}
|