Skip to content

Instantly share code, notes, and snippets.

@josf
Created March 6, 2014 22:16
Show Gist options
  • Select an option

  • Save josf/9400915 to your computer and use it in GitHub Desktop.

Select an option

Save josf/9400915 to your computer and use it in GitHub Desktop.
(defn html-files [dir]
"Returns a lazy seq of java file objects"
(filter #(and (.isFile %) (re-find #"\.html" (.getName %)))
(file-seq (clojure.java.io/file dir))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment