Function: denote--directory-get-files
denote--directory-get-files is a byte-compiled function defined in
denote.el.
Signature
(denote--directory-get-files)
Documentation
Return list with full path of valid files in variable denote-directory(var)/denote-directory(fun).
Consider files that satisfy denote-file-has-denoted-filename-p and
are not backups.
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote--directory-get-files ()
"Return list with full path of valid files in variable `denote-directory'.
Consider files that satisfy `denote-file-has-denoted-filename-p' and
are not backups."
(seq-filter
(lambda (file)
(and (file-regular-p file)
(denote-file-has-denoted-filename-p file)
(not (denote--file-excluded-p file))
(not (backup-file-name-p file))))
(denote--directory-all-files-recursively)))