Function: file-attribute-size

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

Signature

(file-attribute-size ATTRIBUTES)

Documentation

The integer size (in bytes) in ATTRIBUTES returned by file-attributes.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-size (attributes)
  "The integer size (in bytes) in ATTRIBUTES returned by `file-attributes'."
  (nth 7 attributes))