utilities-clj.file
Provides some I/O utility functions.
basename
(basename path)
Returns a file name without extension.
walk
(walk folder pattern)
Walks through the folder files which match the specified pattern. Returns a java.io.File collection of the files in the folder, whose name matches the pattern. ## Usage (require '[utilities.file :refer :all]) (walk source-folder #".*\.asc")