Liking cljdoc? Tell your friends :D

pathological.files


copyclj

(copy source destination & options)
source

copy-recursivelyclj

(copy-recursively source destination)
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

deleteclj

(delete path)
source

delete-recursivelyclj

(delete-recursively path)
source

directory?clj

(directory? path & options)
source

executable?clj

(executable? path)
source

exists?clj

(exists? path & options)
source

findclj

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

hidden?clj

(hidden? path)
source

moveclj

(move source destination & options)
source

move-recursivelyclj

(move-recursively source destination)
source

new-input-streamclj

(new-input-stream path & options)
source

new-output-streamclj

(new-output-stream path & options)
source

populate-file-treeclj

(populate-file-tree path definition)
source

posix-file-permissionsclj

(posix-file-permissions string-or-path & options)
source

posix-file-permissions-attributeclj

(posix-file-permissions-attribute string)
source

posix-file-permissions-stringclj

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

read-all-linesclj

(read-all-lines path)
(read-all-lines path charset)
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

symbolic-link?clj

(symbolic-link? path)
source

walkclj

(walk path
      &
      {:keys [file-visit-options maximum-depth]
       :or {file-visit-options [] maximum-depth Integer/MAX_VALUE}})
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

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