The File Search extension brings local file search into the Sliprail launcher. Find files and folders by name, keyword, or wildcard pattern without opening a file manager first.
Searches file and directory names by keyword or glob pattern, helping you locate documents, photos, and other local items without browsing folders manually.
File Search supports standard glob patterns for flexible matching:
* matches any number of characters. For example, *.jpg finds all JPEG files? matches one character. For example, photo?.jpg matches photo1.jpg and photoA.jpg{a,b} matches one option from a set. For example, {vacation,family}.jpg matches vacation.jpg and family.jpgSearchFiles shortcutFind all image files:
*.jpg
This pattern finds every file with the .jpg extension.
Find files with specific naming patterns:
photo?.jpg
This pattern matches files such as photo1.jpg and photoA.jpg.
Find multiple possible files:
{vacation,family}.jpg
This pattern searches for both vacation.jpg and family.jpg.
To improve performance and reduce noise, configure an exclusion list for File Search with .gitignore syntax.
Common examples:
node_modules/
dist/
*.log
.env
**/build/
!keep.log
Rule notes:
/ denotes a directory! re-includes an item excluded by an earlier rule** matches across directory levels, * matches characters within a path segment, and ? matches one characterA focused exclusion list can significantly improve search speed and relevance.
*, ?, and {} cover most common searches