Function: file-attribute-modes
file-attribute-modes is a byte-compiled function defined in
files.el.gz.
Signature
(file-attribute-modes ATTRIBUTES)
Documentation
The file modes in ATTRIBUTES returned by file-attributes.
This is a string of ten letters or dashes as in ls -l.
Probably introduced at or before Emacs version 26.1.
Aliases
tramp-compat-file-attribute-modes
Source Code
;; Defined in /usr/src/emacs/lisp/files.el.gz
(defsubst file-attribute-modes (attributes)
"The file modes in ATTRIBUTES returned by `file-attributes'.
This is a string of ten letters or dashes as in ls -l."
(nth 8 attributes))