Windows: Archive package changes for Windows daemon

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard 2015-05-07 15:14:11 -07:00
parent 24fd826fc0
commit f883e81d79
11 changed files with 166 additions and 56 deletions

View file

@ -3,15 +3,34 @@
package system
import (
"errors"
"syscall"
"os"
"time"
)
func fromStatT(s *syscall.Win32FileAttributeData) (*Stat_t, error) {
return nil, errors.New("fromStatT should not be called on windows path")
type Stat_t struct {
name string
size int64
mode os.FileMode
modTime time.Time
isDir bool
}
func Stat(path string) (*Stat_t, error) {
// should not be called on cli code path
return nil, ErrNotSupportedPlatform
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
}