(defn delete-file "Delete file f. Raise an exception if it fails unless silently is true." {:deprecated "1.2"} [f & [silently]] (or (.delete (file f)) silently (throw (java.io.IOException. (str "Couldn't delete " f)))))
Comments top
No comments for delete-file. Log in to add a comment.