mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 19:49:44 +00:00
25 lines
516 B
Go
25 lines
516 B
Go
package restic
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
|
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
|
}
|
|
|
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
|
node.ChangeTime = time.Unix(stat.Ctimespec.Unix())
|
|
node.AccessTime = time.Unix(stat.Atimespec.Unix())
|
|
}
|
|
|
|
func changeTime(stat *syscall.Stat_t) time.Time {
|
|
return time.Unix(stat.Ctimespec.Unix())
|
|
}
|
|
|
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
return nil
|
|
}
|