Skip to content

Instantly share code, notes, and snippets.

@bhenry
Created July 21, 2010 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhenry/62e3f6c5c8cd3ddd4d5e to your computer and use it in GitHub Desktop.
Save bhenry/62e3f6c5c8cd3ddd4d5e to your computer and use it in GitHub Desktop.
(defn get-images [dir]
(filter #(or
(re-find #".gif$" (.getName %))
(re-find #".jpg$" (.getName %))
(re-find #".png$" (.getName %))) (get-files dir)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment