Skip to content

Instantly share code, notes, and snippets.

@pingles
Created February 2, 2010 09:03
Show Gist options
  • Save pingles/292532 to your computer and use it in GitHub Desktop.
Save pingles/292532 to your computer and use it in GitHub Desktop.
(defn fetch [address f]
(with-open [rdr (BufferedInputStream. (.openStream (URL. address)))]
(with-open [wtr (FileOutputStream. (file-str f))]
(copy rdr wtr))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment