forked from TrueCloudLab/restic
9a99141a5f
Only the `Sys()` value from os.FileInfo is kept as field `sys` to support Windows. The os.FileInfo removal ensures that for values like `ModTime` that existed in both data structures there's no more confusion which value is actually used.
34 lines
735 B
Go
34 lines
735 B
Go
//go:build freebsd || darwin || netbsd
|
|
// +build freebsd darwin netbsd
|
|
|
|
package fs
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
// extendedStat extracts info into an ExtendedFileInfo for unix based operating systems.
|
|
func extendedStat(fi os.FileInfo) *ExtendedFileInfo {
|
|
s := fi.Sys().(*syscall.Stat_t)
|
|
|
|
return &ExtendedFileInfo{
|
|
Name: fi.Name(),
|
|
Mode: fi.Mode(),
|
|
|
|
DeviceID: uint64(s.Dev),
|
|
Inode: uint64(s.Ino),
|
|
Links: uint64(s.Nlink),
|
|
UID: s.Uid,
|
|
GID: s.Gid,
|
|
Device: uint64(s.Rdev),
|
|
BlockSize: int64(s.Blksize),
|
|
Blocks: s.Blocks,
|
|
Size: s.Size,
|
|
|
|
AccessTime: time.Unix(s.Atimespec.Unix()),
|
|
ModTime: time.Unix(s.Mtimespec.Unix()),
|
|
ChangeTime: time.Unix(s.Ctimespec.Unix()),
|
|
}
|
|
}
|