Liking cljdoc? Tell your friends :D

pathological.files


copyclj

(copy source destination & options)
source

copy-recursivelyclj

(copy-recursively source destination & {:as options})
source

create-directoriesclj

(create-directories path & options)
source

create-directoryclj

(create-directory path & options)
source

create-fileclj

(create-file path & options)
source

(create-link link target)
source

(create-symbolic-link link target & options)
source

create-temp-directoryclj

(create-temp-directory & args)
source

create-temp-fileclj

(create-temp-file & args)
source

deleteclj

(delete path)
source

delete-if-existsclj

(delete-if-exists path)
source

delete-recursivelyclj

(delete-recursively path & {:as options})
source

directory?clj

(directory? path & options)
source

executable?clj

(executable? path)
source

exists?clj

(exists? path & options)
source

findclj

(find path matcher & options)
source

find-streamclj

(find-stream path
             matcher
             &
             {:keys [file-visit-options maximum-depth]
              :or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
source

hidden?clj

(hidden? path)
source

linesclj

(lines path)
(lines path charset)
source

lines-streamclj

(lines-stream path)
(lines-stream path charset)
source

listclj

(list path)
source

list-streamclj

(list-stream path)
source

moveclj

(move source destination & options)
source

move-recursivelyclj

(move-recursively source destination & {:as options})
source

new-buffered-readerclj

(new-buffered-reader path)
(new-buffered-reader path charset)
source

new-buffered-writerclj

(new-buffered-writer path & args)
source

new-directory-streamclj

(new-directory-stream path)
(new-directory-stream path glob-or-filter)
source

new-input-streamclj

(new-input-stream path & options)
source

new-output-streamclj

(new-output-stream path & options)
source

not-exists?clj

(not-exists? path & options)
source

populate-file-treeclj

(populate-file-tree path definition & {:as options})
source

probe-content-typeclj

(probe-content-type path)
source

read-all-bytesclj

(read-all-bytes path)
source

read-all-linesclj

(read-all-lines path)
(read-all-lines path charset)
source

read-attributeclj

(read-attribute path attribute-spec & options)
source

read-attributesclj

(read-attributes path attribute-spec & options)
source

read-file-attribute-viewclj

(read-file-attribute-view path type & options)
source

read-last-modified-timeclj

(read-last-modified-time path & options)
source

read-ownerclj

(read-owner path & options)
source

read-posix-file-permissionsclj

(read-posix-file-permissions path & options)
source

(read-symbolic-link path)
source

readable?clj

(readable? path)
source

regular-file?clj

(regular-file? path & options)
source

same-file?clj

(same-file? path-1 path-2)
source

set-attributeclj

(set-attribute path attribute-spec value & options)
source

set-last-modified-timeclj

(set-last-modified-time path last-modified-time)
source

set-ownerclj

(set-owner path user-principal)
source

set-posix-file-permissionsclj

(set-posix-file-permissions path permissions)
source

sizeclj

(size path)
source

symbolic-link?clj

(symbolic-link? path)
source

typeclj

(type path & options)
source

walkclj

(walk path & options)
source

walk-file-treeclj

(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}})
source

walk-streamclj

(walk-stream path
             &
             {:keys [file-visit-options maximum-depth]
              :or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
source

writable?clj

(writable? path)
source

write-linesclj

(write-lines path lines)
(write-lines path lines charset & options)
source

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

× close