Function: file-attribute-access-time

file-attribute-access-time is a byte-compiled function defined in files.el.gz.

Signature

(file-attribute-access-time ATTRIBUTES)

Documentation

The last access time in ATTRIBUTES returned by file-attributes.

This a Lisp timestamp in the style of current-time.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-access-time (attributes)
  "The last access time in ATTRIBUTES returned by `file-attributes'.
This a Lisp timestamp in the style of `current-time'."
  (nth 4 attributes))