Function: f-newer-p

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

Signature

(f-newer-p FILE OTHER &optional METHOD)

Documentation

Compare if FILE is newer than OTHER.

For more info on METHOD, see f--date-compare.

Aliases

f-newer?

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-newer-p (file other &optional method)
  "Compare if FILE is newer than OTHER.

For more info on METHOD, see `f--date-compare'."
  (> (f--date-compare file other method) 0))