Glob Patterns

A glob pattern describes which files or folders to select. Patterns can combine wildcards, directory traversal, and exclusion rules. This guide explains the supported syntax and provides usage examples.

Supported Syntax

The following table summarizes the glob pattern features available in Kampose:

PatternMeaning
*Matches any number of characters in a name
**Matches any number of directory levels
..Refers to the parent directory
!patternExcludes files or directories matching the pattern
/Directory separator (use forward slash only)

Use these features to build patterns that match specific files, groups of files, or entire directory trees.

Usage Examples

The following examples show how to use glob patterns in Kampose configuration files:

Notes

For more details, see the Microsoft File Globbing documentation.