mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9c83124302
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
457 B
Go
20 lines
457 B
Go
// +build !windows
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// Lstat takes a path to a file and returns
|
|
// a system.StatT type pertaining to that file.
|
|
//
|
|
// Throws an error if the file does not exist
|
|
func Lstat(path string) (*StatT, error) {
|
|
s := &syscall.Stat_t{}
|
|
if err := syscall.Lstat(path, s); err != nil {
|
|
return nil, &os.PathError{Op: "Lstat", Path: path, Err: err}
|
|
}
|
|
return fromStatT(s)
|
|
}
|