package async_find

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type error_handler =
  1. | Ignore
  2. | Print
  3. | Raise
  4. | Handle_with of string -> unit Async.Deferred.t
type t = {
  1. min_depth : int;
  2. max_depth : int option;
  3. on_open_errors : error_handler;
  4. on_stat_errors : error_handler;
  5. filter : ((string * Async.Unix.Stats.t) -> bool Async.Deferred.t) option;
  6. skip_dir : ((string * Async.Unix.Stats.t) -> bool Async.Deferred.t) option;
  7. relative_paths : bool;
}
val default : t
val ignore_errors : t