The File Search extension is a powerful tool officially provided by Sliprail that integrates file search functionality directly into Sliprail's shortcut command system. No need to open file browsers or navigate complex search interfaces—just a few keystrokes to quickly find the files you need.
Searches file and directory names by keyword or glob pattern, helping you locate documents, photos, and other local items without browsing folders manually.
The extension supports rich glob wildcard syntax for more flexible searching:
*: Matches any number of characters (e.g., *.jpg finds all jpg images).?: Matches a single character (e.g., photo?.jpg matches photo1.jpg or photoA.jpg).{a,b}: Matches one of multiple options (e.g., {vacation,family}.jpg matches vacation.jpg or family.jpg).SearchFilesFind all image files:
*.jpg
This will find all files with the .jpg extension.
Find files with specific naming patterns:
photo?.jpg
This will match files like photo1.jpg, photoA.jpg, etc.
Find multiple possible files:
{vacation,family}.jpg
This will simultaneously search for 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.
*, ?, {} can significantly boost search efficiency