Function: tramp-rclone-file-name-p

tramp-rclone-file-name-p is a byte-compiled function defined in tramp-rclone.el.gz.

Signature

(tramp-rclone-file-name-p FILENAME)

Documentation

Check if it's a FILENAME for rclone.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-rclone.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-rclone-file-name-p (filename)
  "Check if it's a FILENAME for rclone."
  (and (tramp-tramp-file-p filename)
       (string= (tramp-file-name-method (tramp-dissect-file-name filename))
		tramp-rclone-method)))