Function: tramp-gvfs-info

tramp-gvfs-info is a byte-compiled function defined in tramp-gvfs.el.gz.

Signature

(tramp-gvfs-info FILENAME &optional ARG)

Documentation

Check FILENAME via gvfs-info.

Set file property "file-exists-p" with the result.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
;; File name primitives.

(defun tramp-gvfs-info (filename &optional arg)
  "Check FILENAME via `gvfs-info'.
Set file property \"file-exists-p\" with the result."
  (with-parsed-tramp-file-name (expand-file-name filename) nil
    (tramp-set-file-property
     v localname "file-exists-p"
     (tramp-gvfs-send-command
      v "gvfs-info" arg (tramp-gvfs-url-file-name filename)))))