1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg/system/stat_windows.go
John Howard 8228ee4b0f Windows: Archive package changes for Windows daemon
Signed-off-by: John Howard <jhoward@microsoft.com>
2015-05-20 08:55:54 -07:00

36 lines
432 B
Go

// +build windows
package system
import (
"os"
"time"
)
type Stat_t struct {
name string
size int64
mode os.FileMode
modTime time.Time
isDir bool
}
func (s Stat_t) Name() string {
return s.name
}
func (s Stat_t) Size() int64 {
return s.size
}
func (s Stat_t) Mode() os.FileMode {
return s.mode
}
func (s Stat_t) ModTime() time.Time {
return s.modTime
}
func (s Stat_t) IsDir() bool {
return s.isDir
}