2014-02-21 09:12:25 +00:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2015-07-28 16:13:12 +00:00
|
|
|
// LUtimesNano is used to change access and modification time of the speficied path.
|
|
|
|
// It's used for symbol link file because syscall.UtimesNano doesn't support a NOFOLLOW flag atm.
|
2014-02-21 09:12:25 +00:00
|
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
|
|
// These are not currently available in syscall
|
2015-07-28 16:13:12 +00:00
|
|
|
atFdCwd := -100
|
|
|
|
atSymLinkNoFollow := 0x100
|
2014-02-21 09:12:25 +00:00
|
|
|
|
|
|
|
var _path *byte
|
|
|
|
_path, err := syscall.BytePtrFromString(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-28 16:13:12 +00:00
|
|
|
if _, _, err := syscall.Syscall6(syscall.SYS_UTIMENSAT, uintptr(atFdCwd), uintptr(unsafe.Pointer(_path)), uintptr(unsafe.Pointer(&ts[0])), uintptr(atSymLinkNoFollow), 0, 0); err != 0 && err != syscall.ENOSYS {
|
2014-02-21 09:12:25 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-28 16:13:12 +00:00
|
|
|
// UtimesNano is used to change access and modification time of the specified path.
|
|
|
|
// It can't be used for symbol link file.
|
2014-02-21 09:12:25 +00:00
|
|
|
func UtimesNano(path string, ts []syscall.Timespec) error {
|
2014-06-17 23:19:42 +00:00
|
|
|
return syscall.UtimesNano(path, ts)
|
2014-02-21 09:12:25 +00:00
|
|
|
}
|