(defn ^File file
"Returns a java.io.File from string or file args."
{:deprecated "1.2"}
([arg]
(as-file arg))
([parent child]
(File. ^File (as-file parent) ^String (relative-path-string child)))
([parent child & more]
(reduce file (file parent child) more)))
Comments top
No comments for file. Log in to add a comment.