You can search for files using wildcards pattern matching for the filename. You can also search for specific text inside the files.
Searches will always search for all files within the current viewing folder and all of its subfolders recursively. So, please beware that it will take quite some time if you search from the whole drive or phone.
Pattern
Meaning
*
matches everything
?
matches any single character
[seq]
matches any character in seq (a sequence of characters)
[!seq]
matches any character not in seq (a sequence of characters)
Eg.
*.* - for all files.
*.txt - for all text files using txt extension.
[1-9]*.png - for all images files using png extension with filename starting with a digit.
[f-y]*.png - for all images files using png extension with filename starting with a char within the range from f to y.
Search for [f-y]*.png
Search results
Below is an example of searching for python files containing the text appuifw.
Specify the filename pattern first, then after the comma, specify the text to search for.