Function: tramp-adb-handle-file-executable-p

tramp-adb-handle-file-executable-p is a byte-compiled function defined in tramp-adb.el.gz.

Signature

(tramp-adb-handle-file-executable-p FILENAME)

Documentation

Like file-executable-p for Tramp files.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-adb.el.gz
(defun tramp-adb-handle-file-executable-p (filename)
  "Like `file-executable-p' for Tramp files."
  (with-parsed-tramp-file-name filename nil
    (with-tramp-file-property v localname "file-executable-p"
      (tramp-adb-send-command-and-check
       v (format "test -x %s" (tramp-shell-quote-argument localname))))))