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:
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 |
| a
└── b
├── c
│ └── file1.txt
├── file2.txt
└── file3.log |
All files inside the |
| a
└── b
├── file2.txt
└── file3.log |
All pathnames containing a |
| a
└── b
├── c
│ └── file1.txt
├── file2.txt
└── file3.log |