Skip to content

Instantly share code, notes, and snippets.

@sri
Created March 22, 2014 07:03
Show Gist options
  • Save sri/9702471 to your computer and use it in GitHub Desktop.
Save sri/9702471 to your computer and use it in GitHub Desktop.
Non-recursive filter-files-in-directory
(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