Android Utililty Methods Folder Search

List of utility methods to do Folder Search

Description

The list of methods to do Folder Search are organized into topic(s).

Method

ListfindFiles(String fileString, boolean ignoreNonExistent)
find Files
if (fileString.endsWith("*")) {
    File f = new File(fileString);
    File parent = f.getParentFile();
    if (parent == null) {
        parent = new File(".");
    FileFilter fileFilter = new WildcardFileFilter(f.getName());
    File[] files = parent.listFiles(fileFilter);
...