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.
Supports quick searching through keywords and file names, helping you efficiently find documents, photos, and other files. Whether it's partial file names or complete paths, it provides precise matching.
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, you can configure an exclusion list for File Search using .gitignore syntax.
Common examples:
node_modules/
dist/
*.log
.env
**/build/
!keep.log
Rule notes:
Tip: a well‑tuned exclusion list can significantly improve search speed and relevance.
*, ?, {} can significantly boost search efficiency