Liking cljdoc? Tell your friends :D

pathological.files


copyclj

(copy source destination & options)

copy-recursivelyclj

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

create-directoriesclj

(create-directories path & options)

create-directoryclj

(create-directory path & options)

create-fileclj

(create-file path & options)

(create-link link target)

(create-symbolic-link link target & options)

create-temp-directoryclj

(create-temp-directory & args)

create-temp-fileclj

(create-temp-file & args)

deleteclj

(delete path)

delete-if-existsclj

(delete-if-exists path)

delete-recursivelyclj

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

directory?clj

(directory? path & options)

executable?clj

(executable? path)

exists?clj

(exists? path & options)

findclj

(find path matcher & options)

find-streamclj

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

hidden?clj

(hidden? path)

linesclj

(lines path)
(lines path charset)

lines-streamclj

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

listclj

(list path)

list-streamclj

(list-stream path)

moveclj

(move source destination & options)

move-recursivelyclj

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

new-buffered-readerclj

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

new-buffered-writerclj

(new-buffered-writer path & args)

new-directory-streamclj

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

new-input-streamclj

(new-input-stream path & options)

new-output-streamclj

(new-output-stream path & options)

not-exists?clj

(not-exists? path & options)

populate-file-treeclj

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

probe-content-typeclj

(probe-content-type path)

read-all-bytesclj

(read-all-bytes path)

read-all-linesclj

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

read-attributeclj

(read-attribute path attribute-spec & options)

read-attributesclj

(read-attributes path attribute-spec & options)

read-file-attribute-viewclj

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

read-last-modified-timeclj

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

read-ownerclj

(read-owner path & options)

read-posix-file-permissionsclj

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

(read-symbolic-link path)

readable?clj

(readable? path)

regular-file?clj

(regular-file? path & options)

same-file?clj

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

set-attributeclj

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

set-last-modified-timeclj

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

set-ownerclj

(set-owner path user-principal)

set-posix-file-permissionsclj

(set-posix-file-permissions path permissions)

sizeclj

(size path)

symbolic-link?clj

(symbolic-link? path)

typeclj

(type path & options)

walkclj

(walk path & options)

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

walk-streamclj

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

writable?clj

(writable? path)

write-linesclj

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

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

× close