Function: f-symlink-p

f-symlink-p is a byte-compiled function defined in f.el.

Signature

(f-symlink-p PATH)

Documentation

Return t if PATH is symlink, false otherwise.

Other relevant functions are documented in the f group.

Shortdoc

;; f
(f-symlink-p "path/to/file.txt")
    -> [it depends]
  (f-symlink-p "path/to/dir")
    -> [it depends]
  (f-symlink-p "path/to/link")
    -> [it depends]

Aliases

f-symlink?

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-symlink-p (path)
  "Return t if PATH is symlink, false otherwise."
  (not (not (file-symlink-p path))))