Variable: tramp-gvfs-file-attributes-with-gvfs-info-regexp

tramp-gvfs-file-attributes-with-gvfs-info-regexp is a variable defined in tramp-gvfs.el.gz.

Value

"^[[:blank:]]*\\(access::can-\\(?:execute\\|read\\|write\\)\\|name\\|owner::\\(?:group\\|user\\)\\|standard::\\(?:display-name\\|is-volatile\\|s\\(?:ize\\|ymlink-target\\)\\)\\|t\\(?:ime::\\(?:access\\|\\(?:chang\\|modifi\\)ed\\)\\|ype\\)\\|unix::\\(?:device\\|gid\\|inode\\|mode\\|nlink\\|uid\\)\\):[[:blank:]]+\\(.*\\)$"

Documentation

Regexp to parse GVFS file attributes with gvfs-info.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
(defconst tramp-gvfs-file-attributes-with-gvfs-info-regexp
  (concat "^[[:blank:]]*"
	  (regexp-opt tramp-gvfs-file-attributes t)
	  ":[[:blank:]]+\\(.*\\)$")
  "Regexp to parse GVFS file attributes with `gvfs-info'.")