You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
…
|
||
---|---|---|
.. | ||
LICENSE | ||
README.md | ||
atime_darwin.go | ||
atime_dragonfly.go | ||
atime_freebsd.go | ||
atime_linux.go | ||
atime_nacl.go | ||
atime_netbsd.go | ||
atime_openbsd.go | ||
atime_plan9.go | ||
atime_solaris.go | ||
atime_windows.go | ||
stat.go |
README.md
atime
Usage
File Access Times for #golang
Looking for ctime or btime? Checkout https://github.com/djherbis/times
Go has a hidden atime function for most platforms, this repo makes it accessible.
package main
import (
"log"
"github.com/djherbis/atime"
)
func main() {
at, err := atime.Stat("myfile")
if err != nil {
log.Fatal(err.Error())
}
log.Println(at)
}
Installation
go get github.com/djherbis/atime