Given the same arg(s) as for file, creates all parent directories of
the file they represent.
(defn make-parents
"Given the same arg(s) as for file, creates all parent directories of
the file they represent."
{:added "1.2"}
[f & more]
(.mkdirs (.getParentFile ^File (apply file f more))))
Comments top
No comments for make-parents. Log in to add a comment.