2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-19 17:22:22 +00:00
restic/node_linux.go

25 lines
515 B
Go
Raw Normal View History

package restic
import (
"os"
"syscall"
"time"
)
2015-04-25 00:36:54 +00:00
func (node *Node) OpenForReading() (*os.File, error) {
2015-04-26 00:54:33 +00:00
file, err := os.OpenFile(node.path, os.O_RDONLY|syscall.O_NOATIME, 0)
if os.IsPermission(err) {
return os.OpenFile(node.path, os.O_RDONLY, 0)
}
return file, err
2015-04-25 00:36:54 +00:00
}
func (node *Node) fillTimes(stat *syscall.Stat_t) {
node.ChangeTime = time.Unix(stat.Ctim.Unix())
node.AccessTime = time.Unix(stat.Atim.Unix())
}
2015-04-29 03:31:07 +00:00
func changeTime(stat *syscall.Stat_t) time.Time {
return time.Unix(stat.Ctim.Unix())
2015-03-07 10:53:32 +00:00
}