package ez_file

  1. Overview
  2. Docs
Easy file manipulation (read_file, write_file, etc.)

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.2.0.tar.gz
sha256=e7b32ebead0f0be76b96b8bd0f826f2a115850b56c6d1129656060d5eff23c97
md5=ce2f4ab5bcb432c552d525dc48a3bdf9

doc/ez_file/FileSelector/index.html

Module FileSelectorSource

Sourcetype 'a t = {
  1. deep : bool;
  2. dft : [ `After | `Before ] option;
  3. filter : bool -> string -> bool;
  4. error : exn -> 'a -> unit;
  5. kinds : Unix.file_kind list option;
}
Sourceval create : ?deep:bool -> ?dft:[ `After | `Before ] -> ?glob:string -> ?path:string -> ?ignore:string -> ?kinds:Unix.file_kind list -> ?filter:(bool -> string -> bool) -> ?follow_links:bool -> ?error:(exn -> 'a -> unit) -> unit -> 'a t
Sourceval globber : ?pathname:bool -> string -> string -> bool
Sourceval make_select : (?select:'file t -> 'file -> 'res) -> ?deep:bool -> ?dft:[ `After | `Before ] -> ?glob:string -> ?path:string -> ?ignore:string -> ?kinds:Unix.file_kind list -> ?filter:(bool -> string -> bool) -> ?follow_links:bool -> ?error:(exn -> 'file -> unit) -> 'file -> 'res