mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7e420ad850
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
25 lines
555 B
Go
25 lines
555 B
Go
// +build windows
|
|
|
|
package system
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// Lstat calls os.Lstat to get a fileinfo interface back.
|
|
// This is then copied into our own locally defined structure.
|
|
// Note the Linux version uses fromStatT to do the copy back,
|
|
// but that not strictly necessary when already in an OS specific module.
|
|
func Lstat(path string) (*StatT, error) {
|
|
fi, err := os.Lstat(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &StatT{
|
|
name: fi.Name(),
|
|
size: fi.Size(),
|
|
mode: fi.Mode(),
|
|
modTime: fi.ModTime(),
|
|
isDir: fi.IsDir()}, nil
|
|
}
|