Wildcard Support
TeamCity supports wildcards in different configuration options.
Antlike Wildcards
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.
Examples
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 |
| \a
-\b
-\c
-file1.txt
-file2.txt
-file3.log
-\d
-file4.log
-file5.log
|
All log files inside the current directory |
|
\a
-\b
-file3.log
-\d
-file4.log
-file5.log
|
All files inside the |
| \b
-\c
-file1.txt
-file2.txt
-file3.log
|
All files inside the |
| \b
-file2.txt
-file3.log
|
Last modified: 21 July 2021