2015-05-05 18:13:55 +00:00
|
|
|
package restic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
|
|
|
file, err := os.OpenFile(node.path, os.O_RDONLY, 0)
|
|
|
|
if os.IsPermission(err) {
|
|
|
|
return os.OpenFile(node.path, os.O_RDONLY, 0)
|
|
|
|
}
|
|
|
|
return file, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) fillTimes(stat *syscall.Stat_t) {
|
|
|
|
node.ChangeTime = time.Unix(stat.Ctim.Unix())
|
|
|
|
node.AccessTime = time.Unix(stat.Atim.Unix())
|
|
|
|
}
|
|
|
|
|
|
|
|
func changeTime(stat *syscall.Stat_t) time.Time {
|
|
|
|
return time.Unix(stat.Ctim.Unix())
|
|
|
|
}
|
2015-05-14 21:06:11 +00:00
|
|
|
|
|
|
|
func (node Node) restoreSymlinkTimestamps(path string, utimes [2]syscall.Timespec) error {
|
|
|
|
return nil
|
|
|
|
}
|