2017-11-10 11:16:38 +01:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package times
|
|
|
|
|
2018-11-24 16:31:25 +01:00
|
|
|
import "os"
|
2017-11-10 11:16:38 +01:00
|
|
|
|
2018-11-24 16:31:25 +01:00
|
|
|
// Stat returns the Timespec for the given filename.
|
|
|
|
func Stat(name string) (Timespec, error) {
|
|
|
|
return stat(name, os.Stat)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lstat returns the Timespec for the given filename, and does not follow Symlinks.
|
|
|
|
func Lstat(name string) (Timespec, error) {
|
|
|
|
return stat(name, os.Lstat)
|
2017-11-10 11:16:38 +01:00
|
|
|
}
|