Function: f-change-time
f-change-time is a byte-compiled function defined in f.el.
Signature
(f-change-time PATH &optional TIMESTAMP-P)
Documentation
Return the last status change time of PATH.
The status change time (ctime) of PATH in the same format as
current-time. For details on TIMESTAMP-P and the format of the
returned value, see f--get-time.
Source Code
;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-change-time (path &optional timestamp-p)
"Return the last status change time of PATH.
The status change time (ctime) of PATH in the same format as
`current-time'. For details on TIMESTAMP-P and the format of the
returned value, see `f--get-time'."
(f--get-time path
timestamp-p
(if (fboundp 'file-attribute-status-change-time)
#'file-attribute-status-change-time
(lambda (f) (nth 6 f)))))