Created
March 22, 2014 07:03
-
-
Save sri/9702471 to your computer and use it in GitHub Desktop.
Non-recursive filter-files-in-directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun filter-files-in-directory (dir &optional filter include-subdirs) | |
(let ((dirs (list dir)) | |
(result '())) | |
(while dirs | |
(dolist (f (directory-files (pop dirs) 'full nil 'nosort)) | |
(cond ((string-match "/\\([.][.]?\\|.git\\)$" f) | |
;; do nothing if ".", "..", or ".git" | |
) | |
((and include-subdirs (file-directory-p f)) | |
(push f dirs)) | |
((or (null filter) | |
(if (stringp filter) | |
(string-match filter f) | |
(funcall filter f))) | |
(push f result))))) | |
result)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment