Function: file-attribute-modification-time

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

Signature

(file-attribute-modification-time ATTRIBUTES)

Documentation

The modification time in ATTRIBUTES returned by file-attributes.

This is the time of the last change to the file's contents, and is a Lisp timestamp in the style of current-time.

Probably introduced at or before Emacs version 26.1.

Aliases

tramp-compat-file-attribute-modification-time

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-modification-time (attributes)
  "The modification time in ATTRIBUTES returned by `file-attributes'.
This is the time of the last change to the file's contents, and
is a Lisp timestamp in the style of `current-time'."
  (nth 5 attributes))