Liking cljdoc? Tell your friends :D
Clojure only.

utilities-clj.file

Provides some I/O utility functions.

Provides some I/O utility functions.
raw docstring

basenameclj

(basename path)

Returns a file name without extension.

Returns a file name without extension.
sourceraw docstring

walkclj

(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")  
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")  
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close