core/src/find library

Classes

Find
Implementation for the _find function.
FindItem
Holds details of a file system entity returned by the find function.
FindProgress
InternalProgress
Base class for functions that return some type of Progres.

Functions

find(String pattern, {bool caseSensitive = false, bool recursive = true, bool includeHidden = false, String workingDirectory = '.', List<FileSystemEntityType> types = const [Find.file]}) FindProgress
findCore(String pattern, {required ProgressCallback progress, bool caseSensitive = false, bool recursive = true, bool includeHidden = false, String workingDirectory = '.', List<FileSystemEntityType> types = const [Find.file]}) → void
Returns the list of files in the current and child directories that match the passed glob pattern.

Typedefs

CancelableLineAction = bool Function(String line)
Typedef for cancellable LineActions.
LineAction = void Function(String line)
Typedef for LineActions
ProgressCallback = bool Function(FindItem item)