Function: hynote-get-files

hynote-get-files is a byte-compiled function defined in hynote.el.

Signature

(hynote-get-files)

Documentation

Return hynote-directory-list files ending with hynote-file-suffix-regexp.

File names returned are relative to hynote-directory-list.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hynote.el
(defun hynote-get-files ()
  "Return `hynote-directory-list' files ending with `hynote-file-suffix-regexp'.
File names returned are relative to `hynote-directory-list'."
  (mapcan
   (lambda (dir)
    (make-directory dir t)
    (when (file-readable-p dir)
      (directory-files dir nil (concat "^[^#]+" hynote-file-suffix-regexp))))
   hynote-directory-list))