module Find:Unix likesig
..end
find
.type
t
typefile_info =
string * Core.Std.Unix.stats
module Options:sig
..end
val create : ?options:Options.t -> string -> t
create ?options dir
create a Find.t based in dirval next : t -> file_info option
val close : t -> unit
val iter : t -> f:(file_info -> unit) -> unit
val fold : t -> init:'a -> f:('a -> file_info -> 'a) -> 'a
val to_list : t -> file_info list
val find_all : ?options:Options.t -> string -> file_info list