mirror of https://github.com/restic/restic.git
21 lines
390 B
Go
21 lines
390 B
Go
package restic
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
|
return os.Open(node.path)
|
|
}
|
|
|
|
func changeTime(stat *syscall.Stat_t) time.Time {
|
|
return time.Unix(stat.Ctimespec.Unix())
|
|
}
|
|
|
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
|
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
|
|
node.AccessTime = time.Unix(stat.Atimespec.Unix())
|
|
}
|