我想搜索一个特定模式的文件。例如:假设我有两个文件:
- <
- 文件名1.美元类/gh><
- 文件名2.美元类/gh>
现在我想搜索filename$*.class
,如果存在,那么我将做一些事情。请建议在ANT中搜索此模式。
使用一个文件集
<fileset dir="your/dir" includes="filename$*.class"/>