Function: file-attribute-user-id
file-attribute-user-id is a byte-compiled function defined in
files.el.gz.
Signature
(file-attribute-user-id ATTRIBUTES)
Documentation
The UID field in ATTRIBUTES returned by file-attributes.
This is either a string or a number. If a string value cannot be looked up, a numeric value, either an integer or a float, is returned.
Probably introduced at or before Emacs version 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-user-id (attributes)
"The UID field in ATTRIBUTES returned by `file-attributes'.
This is either a string or a number. If a string value cannot be
looked up, a numeric value, either an integer or a float, is
returned."
(nth 2 attributes))