mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
c4b2486b7c
This adds two implementations of the new `FS` interface: One for the local file system (`Local`) and one for a single file read from an `io.Reader` (`Reader`).
35 lines
964 B
Go
35 lines
964 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
// ExtendedFileInfo is an extended stat_t, filled with attributes that are
|
|
// supported by most operating systems. The original FileInfo is embedded.
|
|
type ExtendedFileInfo struct {
|
|
os.FileInfo
|
|
|
|
DeviceID uint64 // ID of device containing the file
|
|
Inode uint64 // Inode number
|
|
Links uint64 // Number of hard links
|
|
UID uint32 // owner user ID
|
|
GID uint32 // owner group ID
|
|
Device uint64 // Device ID (if this is a device file)
|
|
BlockSize int64 // block size for filesystem IO
|
|
Blocks int64 // number of allocated filesystem blocks
|
|
Size int64 // file size in byte
|
|
|
|
AccessTime time.Time // last access time stamp
|
|
ModTime time.Time // last (content) modification time stamp
|
|
}
|
|
|
|
// ExtendedStat returns an ExtendedFileInfo constructed from the os.FileInfo.
|
|
func ExtendedStat(fi os.FileInfo) ExtendedFileInfo {
|
|
if fi == nil {
|
|
panic("os.FileInfo is nil")
|
|
}
|
|
|
|
return extendedStat(fi)
|
|
}
|