2021-08-23 09:14:53 -04:00
|
|
|
//go:build !windows
|
2014-11-13 15:00:04 -05:00
|
|
|
// +build !windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
2014-11-13 15:00:04 -05:00
|
|
|
|
2017-05-23 10:22:32 -04:00
|
|
|
import (
|
2018-10-22 20:17:51 -04:00
|
|
|
"os"
|
2017-05-23 10:22:32 -04:00
|
|
|
"syscall"
|
|
|
|
)
|
2014-11-13 15:00:04 -05:00
|
|
|
|
2015-03-31 04:03:31 -04:00
|
|
|
// Lstat takes a path to a file and returns
|
2015-07-28 12:13:12 -04:00
|
|
|
// a system.StatT type pertaining to that file.
|
2015-03-31 04:03:31 -04:00
|
|
|
//
|
|
|
|
// Throws an error if the file does not exist
|
2015-07-28 12:13:12 -04:00
|
|
|
func Lstat(path string) (*StatT, error) {
|
2014-11-13 15:00:04 -05:00
|
|
|
s := &syscall.Stat_t{}
|
2015-04-26 12:50:25 -04:00
|
|
|
if err := syscall.Lstat(path, s); err != nil {
|
2018-12-19 17:57:06 -05:00
|
|
|
return nil, &os.PathError{Op: "Lstat", Path: path, Err: err}
|
2014-11-13 15:00:04 -05:00
|
|
|
}
|
2014-11-13 15:36:05 -05:00
|
|
|
return fromStatT(s)
|
2014-11-13 15:00:04 -05:00
|
|
|
}
|