Option 1: FileBot Filter
Drop your folders into the Filter panel and let FileBot categorize files by their type, and then either drag-and-drop them where you want them to be, or use the Send to menu.

Option 2: Use Windows Explorer or Mac Finder
Rather than dropping folders, just drop specific files instead. Search for the files you want (e.g. search for *.mkv in Windows Explorer or kind:video in Mac Finder) and then select all the files and drag them into FileBot.

Option 3: Use Presets with Includes
Presets allow you to set a default folder from which files are loaded and file filter expressions that allow you to include or exclude files.
e.g. Includes: video files
Code: Select all
f.video
Code: Select all
none{ ext =~ /jpg|png/ }{ fn.match(/sample|trailer/) }{ f =~ /Extras|Featurettes/ }
Code: Select all
none{ historic.f || f.metadata }
Option 4: Start FileBot with --file-filter from Terminal
Power Users may use the --file-filter option to select specific files using a custom Groovy expression.
e.g. select only video files:
Code: Select all
filebot -rename -r /path/to/files --file-filter f.video

Option 5: Start FileBot with file arguments from Terminal
Power Users on Linux or macOS may prefer to use standard Linux tools to select files and pass them on to FileBot.
e.g. find *.mkv files and pass them on to the filebot call as arguments:
Code: Select all
find /path/to/files -type f -iname "*.mkv" -exec filebot -rename {} +