2016-08-14 10:39:00 -06:00
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
|
|
|
|
|
|
|
package os
|
|
|
|
|
|
|
|
import (
|
2017-12-04 11:57:48 -07:00
|
|
|
"internal/testlog"
|
2016-08-14 10:39:00 -06:00
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Stat returns the FileInfo structure describing file.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func (f *File) Stat() (FileInfo, error) {
|
|
|
|
if f == nil {
|
|
|
|
return nil, ErrInvalid
|
|
|
|
}
|
|
|
|
var fs fileStat
|
2017-02-10 16:17:38 -07:00
|
|
|
err := f.pfd.Fstat(&fs.sys)
|
2016-08-14 10:39:00 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, &PathError{"stat", f.name, err}
|
|
|
|
}
|
|
|
|
fillFileStatFromSys(&fs, f.name)
|
|
|
|
return &fs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stat returns a FileInfo describing the named file.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func Stat(name string) (FileInfo, error) {
|
2017-12-04 11:57:48 -07:00
|
|
|
testlog.Stat(name)
|
2016-08-14 10:39:00 -06:00
|
|
|
var fs fileStat
|
|
|
|
err := syscall.Stat(name, &fs.sys)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &PathError{"stat", name, err}
|
|
|
|
}
|
|
|
|
fillFileStatFromSys(&fs, name)
|
|
|
|
return &fs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lstat returns a FileInfo describing the named file.
|
|
|
|
// If the file is a symbolic link, the returned FileInfo
|
|
|
|
// describes the symbolic link. Lstat makes no attempt to follow the link.
|
|
|
|
// If there is an error, it will be of type *PathError.
|
|
|
|
func Lstat(name string) (FileInfo, error) {
|
2017-12-04 11:57:48 -07:00
|
|
|
testlog.Stat(name)
|
2016-08-14 10:39:00 -06:00
|
|
|
var fs fileStat
|
|
|
|
err := syscall.Lstat(name, &fs.sys)
|
|
|
|
if err != nil {
|
|
|
|
return nil, &PathError{"lstat", name, err}
|
|
|
|
}
|
|
|
|
fillFileStatFromSys(&fs, name)
|
|
|
|
return &fs, nil
|
|
|
|
}
|