Function: file-attribute-status-change-time

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

Signature

(file-attribute-status-change-time ATTRIBUTES)

Documentation

The status modification time in ATTRIBUTES returned by file-attributes.

This is the time of last change to the file's attributes: owner and group, access mode bits, etc., 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-status-change-time

Source Code

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