Skip to content
/ atime Public
forked from djherbis/atime

Access Times for files #golang

License

Notifications You must be signed in to change notification settings

forkkit/atime

 
 

Repository files navigation

atime

GoDoc Release Software License Build Status Coverage Status Go Report Card Sourcegraph

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

About

Access Times for files #golang

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%