Stog library reference documentation : Stog_find

Module Stog_find

module Stog_find: sig .. end
Finding files.
Author(s): Didier Remy
Version: 0.1

type filter = 
| Maxdepth of int
| Type of Unix.file_kind
| Follow
| Regexp of Str.regexp
| Atime of interval
| Predicate of (string -> bool)
type interval = 
| Le of int
| Eq of int
| Ge of int
type mode = 
| Ignore
| Stderr
| Failure
| Custom of (Unix.error * string * string -> unit)
val find : mode ->
string list -> filter list -> (string -> unit) -> unit
val find_list : mode -> string list -> filter list -> string list