Skip to content

Instantly share code, notes, and snippets.

@dmgerman
Last active May 1, 2022 09:55
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save dmgerman/5675462 to your computer and use it in GitHub Desktop.
Save dmgerman/5675462 to your computer and use it in GitHub Desktop.
Recursively list files in a given directory
;;;
;;; Recursively list files in a given directory
;;;
;;; Author: daniel m german dmg at uvic dot ca
;;; Copyright: daniel m german
;;; License: Same as Emacs
;;;
(defun directory-files-recursive (directory match maxdepth ignore)
"List files in DIRECTORY and in its sub-directories.
Return files that match the regular expression MATCH but ignore
files and directories that match IGNORE (IGNORE is tested before MATCH. Recurse only
to depth MAXDEPTH. If zero or negative, then do not recurse"
(let* ((files-list '())
(current-directory-list
(directory-files directory t)))
;; while we are in the current directory
(while current-directory-list
(let ((f (car current-directory-list)))
(cond
((and
ignore ;; make sure it is not nil
(string-match ignore f))
; ignore
nil
)
((and
(file-regular-p f)
(file-readable-p f)
(string-match match f))
(setq files-list (cons f files-list))
)
((and
(file-directory-p f)
(file-readable-p f)
(not (string-equal ".." (substring f -2)))
(not (string-equal "." (substring f -1)))
(> maxdepth 0))
;; recurse only if necessary
(setq files-list (append files-list (directory-files-recursive f match (- maxdepth -1) ignore)))
(setq files-list (cons f files-list))
)
(t)
)
)
(setq current-directory-list (cdr current-directory-list))
)
files-list
)
)
@gregnwosu
Copy link

line 40 should be deleted

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment