Parameters
The root directory to start the glob search from. Example:
C:\Users\username\DocumentsPatterns to match files you want to find. Use absolute paths with wildcards. Common examples:
C:\Users\username\Documents\*.pdf- All PDF files in DocumentsC:\Users\username\Downloads\*.xlsx- All Excel files in DownloadsC:\Projects\**\report*.docx- Word files starting with “report” in Projects and all subfoldersC:\Data\2024-*.csv- CSV files starting with “2024-” in Data folder
Patterns to exclude files from results. Use absolute paths with wildcards. Common examples:
C:\Users\username\Documents\*temp*- Exclude files with “temp” in the nameC:\Users\username\Documents\*.bak- Exclude backup filesC:\Projects\**\.git\**- Exclude files in .git foldersC:\Users\username\Documents\*draft*- Exclude files with “draft” in the name
Returns
A list of file paths that match the include patterns and don’t match the exclude patterns.
This tool is automatically used by the AI model when needed. You enable it in Cellm’s ribbon menu, then simply ask the model to perform tasks that require file operations (e.g., “Find all PDF files in my Documents folder”).