Function: tramp-use-file-attributes
tramp-use-file-attributes is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-use-file-attributes VEC)
Documentation
Whether to use "file-attributes" file property for check.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defsubst tramp-use-file-attributes (vec)
"Whether to use \"file-attributes\" file property for check."
(and ;; We assume, that connection-local variables are set in this buffer.
(with-current-buffer (tramp-get-connection-buffer vec)
tramp-use-file-attributes)
(tramp-file-property-p
vec (tramp-file-name-localname vec) "file-attributes")))