Module Find_files
Unix like find.
type ttype file_info= string * Core.Unix.stats
module Options : sig ... endval next : t -> file_info optionnext treturn the next file from the collection of valid files in t or None if no more files remain
val close : t -> unitclose tdrops all the resources associated with t. It is a mistake to attempt to use t again. Any Find.t will be automatically closed after the last file is read by any means.
val fold : t -> init:'a -> f:('a -> file_info -> 'a) -> 'afold t ~init ~ffolds f over the files in t