(defn jar-file? "Returns true if file is a normal file with a .jar or .JAR extension." [^File file] (and (.isFile file) (or (.endsWith (.getName file) ".jar") (.endsWith (.getName file) ".JAR"))))
Comments top
No comments for jar-file?. Log in to add a comment.