FileManipCompat-0.12: Port of Find function of FileManip lib for use on windows systems

System.FilePath.FindCompat

Synopsis

Documentation

always :: FindClause BoolSource

Unconditionally return True.

findSource

Arguments

:: RecursionPredicate

control recursion into subdirectories

-> FilterPredicate

decide whether a file appears in the result

-> FilePath

directory to start searching

-> IO [FilePath]

files that matched the FilterPredicate

Search a directory recursively, with recursion controlled by a RecursionPredicate. Lazily return a sorted list of all files matching the given FilterPredicate. Any errors that occur are ignored, with warnings printed to stderr.