Function: tramp-gvfs-file-name-p
tramp-gvfs-file-name-p is a byte-compiled function defined in
tramp-gvfs.el.gz.
Signature
(tramp-gvfs-file-name-p FILENAME)
Documentation
Check if it's a FILENAME handled by the GVFS daemon.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
;; It must be a `defsubst' in order to push the whole code into
;; tramp-loaddefs.el. Otherwise, there would be recursive autoloading.
;;;###tramp-autoload
(defsubst tramp-gvfs-file-name-p (filename)
"Check if it's a FILENAME handled by the GVFS daemon."
(and (tramp-tramp-file-p filename)
(let ((method
(tramp-file-name-method (tramp-dissect-file-name filename))))
(and (stringp method) (member method tramp-gvfs-methods)))))