Add GlobFiles overload to support multiple glob patterns#79
Merged
dennisdoomen merged 4 commits intomainfrom Oct 11, 2025
Merged
Add GlobFiles overload to support multiple glob patterns#79dennisdoomen merged 4 commits intomainfrom
dennisdoomen merged 4 commits intomainfrom
Conversation
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Extend GlobFiles with an array of strings for multiple patterns
Add GlobFiles overload to support multiple glob patterns
Oct 11, 2025
| /// </remarks> | ||
| /// <param name="path">The base directory path to start the glob search from.</param> | ||
| /// <param name="globPattern">The glob pattern used to match file paths, e.g. **/*.md or dir/**/*</param> | ||
| public static ChainablePath[] GlobFiles(this ChainablePath path, string globPattern) |
Owner
There was a problem hiding this comment.
@copilot Rewrite the existing overload that takes a single pattern using the existing one.
Contributor
Author
There was a problem hiding this comment.
Done. The single-pattern overload now delegates to the multi-pattern implementation, eliminating code duplication. All tests pass.
Owner
|
@copilot also update the readme with an example |
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
Contributor
Author
dennisdoomen
approved these changes
Oct 11, 2025
Pull Request Test Coverage Report for Build 18431471735Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Original prompt
Fixes #78
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.