find method
Search for a file bu it's name.
Implementation
Future<List<String>> find(String rootPath, String name,
{bool isExactMatch = false, bool ignoreHidden = true}) async =>
await findFilesByName(rootPath.replaceSeparator(), name,
exactMatch: isExactMatch, ignoreHidden: ignoreHidden);