(copy source destination & options)
(copy-recursively source destination & {:as options})
(create-directories path & options)
(create-directory path & options)
(create-file path & options)
(create-link link target)
(create-symbolic-link link target & options)
(create-temp-directory & args)
(create-temp-file & args)
(delete path)
(delete-if-exists path)
(delete-recursively path & {:as options})
(directory? path & options)
(executable? path)
(exists? path & options)
(find path matcher & options)
(find-stream path
matcher
&
{:keys [file-visit-options maximum-depth]
:or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
(hidden? path)
(lines path)
(lines path charset)
(lines-stream path)
(lines-stream path charset)
(list path)
(list-stream path)
(move source destination & options)
(move-recursively source destination & {:as options})
(new-buffered-reader path)
(new-buffered-reader path charset)
(new-buffered-writer path & args)
(new-directory-stream path)
(new-directory-stream path glob-or-filter)
(new-input-stream path & options)
(new-output-stream path & options)
(not-exists? path & options)
(populate-file-tree path definition & {:as options})
(probe-content-type path)
(read-all-bytes path)
(read-all-lines path)
(read-all-lines path charset)
(read-attribute path attribute-spec & options)
(read-attributes path attribute-spec & options)
(read-file-attribute-view path type & options)
(read-last-modified-time path & options)
(read-owner path & options)
(read-posix-file-permissions path & options)
(read-symbolic-link path)
(readable? path)
(regular-file? path & options)
(same-file? path-1 path-2)
(set-attribute path attribute-spec value & options)
(set-last-modified-time path last-modified-time)
(set-owner path user-principal)
(set-posix-file-permissions path permissions)
(size path)
(symbolic-link? path)
(type path & options)
(walk path & options)
(walk-file-tree
path
&
{:keys [pre-visit-directory-fn post-visit-directory-fn visit-file-fn
visit-file-failed-fn file-visit-options maximum-depth initial-value]
:or {pre-visit-directory-fn (fn [_ _ _] {:control :continue})
post-visit-directory-fn (fn [_ _ _] {:control :continue})
visit-file-fn (fn [_ _ _] {:control :continue})
visit-file-failed-fn (fn [_ _ exception] (throw exception))
file-visit-options []
maximum-depth Integer/MAX_VALUE
initial-value nil}})
(walk-stream path
&
{:keys [file-visit-options maximum-depth]
:or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
(writable? path)
(write-lines path lines)
(write-lines path lines charset & options)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close