Find_filesUnix like find. * * Note: Unlike Unix find, the functions in this module do not produce paths in * depth-first order.
module Unix := Core_unixtype file_info = Core.Filename.t * Unix.statsmodule Options : sig ... endnext t return the next file from the collection of valid files in t or None if no more files remain
val close : t -> unitclose t drops 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.
fold t ~init ~f folds f over the files in t
to_list t returns all of the remaining files in t as a list in the order they would have been returned by subsequent calls to next