- Description:
This key represents a single glob pattern string format for the
collections_config.*.globkey.The value is a string that specifies a file path pattern relative to the Collection path. Globs can be positive (e.g.,
*.yml) or negative (e.g.,!**/*.json).Files are included in a Collection if they match any positive globs and do not match any negative globs.
- Appears in:
└── collections_config └── * └── glob └── Glob- Type:
string- Examples:
In this example, the
dataCollection uses a single glob pattern to show only.ymlfiles in thedatafolder or any nested folders.Copied to clipboardcollections_config: data: path: data glob: '**/*.yml'{ "collections_config": { "data": { "path": "data", "glob": "**/*.yml" } } }