mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
34 lines
665 B
Go
34 lines
665 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"syscall"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
)
|
|
|
|
func nodeRestoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
dir, err := os.Open(fixpath(filepath.Dir(path)))
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
times := []unix.Timespec{
|
|
{Sec: utimes[0].Sec, Nsec: utimes[0].Nsec},
|
|
{Sec: utimes[1].Sec, Nsec: utimes[1].Nsec},
|
|
}
|
|
|
|
err = unix.UtimesNanoAt(int(dir.Fd()), filepath.Base(path), times, unix.AT_SYMLINK_NOFOLLOW)
|
|
|
|
if err != nil {
|
|
// ignore subsequent errors
|
|
_ = dir.Close()
|
|
return errors.Wrap(err, "UtimesNanoAt")
|
|
}
|
|
|
|
return dir.Close()
|
|
}
|