Function: f-full
f-full is a byte-compiled function defined in f.el.
Signature
(f-full PATH)
Documentation
Return absolute path to PATH, with ending slash.
Other relevant functions are documented in the f group.
Shortdoc
;; f
(f-full "~/path/to/file")
=> "/root/path/to/file"
(f-full "~/path/to/dir")
=> "/root/path/to/dir"
(f-full "~/path/to/dir/")
=> "/root/path/to/dir/"
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-full (path)
"Return absolute path to PATH, with ending slash."
(f-slash (f-long path)))