Advanced Search

Not Containing

Exclude files from search results by filtering out specific text.

Open advanced search from the search bar, then enter the unwanted text in the "Not Containing" input field.

< Back to Help

FileBrowser Pro advanced search on Mac showing exclusion of files containing specific text

Search Types

You can filter search results by file type groups to narrow down results.

Click the advanced search icon in the search bar, then open the File Type dropdown and choose a preset or Custom.

Available presets include:

  • Images
  • Videos
  • Music
  • Documents
  • PDF
  • Archives
  • Other
  • Folders
  • Custom

Custom file types allow you to specify specific extensions such as nef, or multiple types such as nef, psd, pdf, txt.

< Back to Help

FileBrowser Pro for Mac advanced search filtering results by document and other file types

Search Dates

You can filter search results by preset time ranges or a custom date range.

Click the advanced search icon in the search bar, then open the Date dropdown and choose a preset or Custom.

Available options include:

  • Before (enter a date)
  • After (enter a date)
  • Last 24 hours
  • Last week
  • Last month
  • Last year
  • Custom

Custom allows you to define a date range by setting a from and to date.

< Back to Help

FileBrowser Pro advanced search on Mac filtering results by custom date range

Search Sizes

You can filter search results using preset file size ranges.

Click the advanced search icon in the search bar, then open the Size dropdown and select a preset.

Available options include:

  • Smaller than 1 KB
  • Smaller than 1 MB
  • Larger than 1 MB
  • Larger than 10 MB
  • Larger than 100 MB

< Back to Help

FileBrowser Pro for Mac advanced search filtering results by preset file size ranges

Search XMP Ratings

You can filter search results using XMP rating presets on macOS.

Click the advanced search icon in the search bar, then open the Rating dropdown and select a preset.

Available options include:

  • All
  • Rejected
  • Not Rejected
  • 0–5 Stars
  • One or more stars

< Back to Help

FileBrowser Pro advanced search UI on Mac filtering results by XMP star ratings

Save Searches

You can save searches that you use regularly for quick access later.

Click the advanced search icon in the search bar and set your search parameters. Then click Save Search, enter a name, and click Save.

Load Searches

To load a previously saved search:

Click the advanced search icon in the search bar, then select Load Search.

Choose a search from the list, then click Load.

Once loaded, run the search by clicking Search Folders.

< Back to Help

FileBrowser Pro for Mac showing saved advanced search options for reuse

Regex Search

Use regular expressions (regex) to search for specific patterns rather than a set of words. You can match files that begin or end with your search parameter. A search like this "[0-9]{4}" will return files that have a 4 numbers together in the filename.

Regex examples:

  • [bc]at Match the characters 'b or c' and charcters 'at' for example 'bat' or 'cat'
  • [^bc]at When using a ^ inside brackets it means not including so this example would match 'pat', but not 'bat' or 'cat'
  • [0-9]{4} A group of 4 numbers, change the number in the curly brackets to change how many numbers.
  • [a-z]{4} A group of 4 characters, change the number in the curly brackets to change how many characters.
  • b.t Search for the character 'b' the dot equals a single character then 't' so would return 'bat' or 'bot'. To return 'beet' you would use b..t
  • ^dog the ^ means files starting with so "dog park" but not "bath dog".
  • \.pdf$ the \ means files ending with so "pdf" the $ means that this must be the end of the filename. Otherwise 'doc.pdf.txt' would match.
  • (cat|dog) Matches either word

FileBrowser isn't limited to just these examples. You can use the full list of regex searches.

Searches are not case sensitive.

< Back to Help

FileBrowser Pro advanced file search on Mac using regular expression filters