Wildcard Support
TeamCity supports wildcards in different configuration options.
Wildcard | Description |
---|---|
| Matches any text in the file or directory name excluding directory separator ( |
| Matches single symbol in the file or directory name excluding directory separator. |
| Matches any symbols including the directory separator. |
You can read more on Ant wildcards in the corresponding section of the Ant documentation.
See the pattern examples for the following file structure inside the current directory:
\a
-\b
-\c
-file1.txt
-file2.txt
-file3.log
-\d
-file4.log
-file5.log
Examples:
Description | Pattern | Matching files |
---|---|---|
All files inside the current directory |
|
|
All log files inside the current directory |
|
|
All files inside the |
|
|
All files inside the |
|
|
Thanks for your feedback!