Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想搜索特定模式的文件。例如:假设我有 2 个文件:
现在我想搜索filename$*.class,如果存在,那么我会做一些事情。请建议在 ANT 中搜索此模式。
filename$*.class
我做了一些功课。使用可用标签,我可以找到单个文件,但无法找到具有特定模式的文件。
使用文件集
<fileset dir="your/dir" includes="filename$*.class"/>