标签: xml ant
我想从classpath中排除xml文件。
我试过了:
<fileset dir="${dirpath}" excludes="**/*.xml" />
但它不起作用。
答案 0 :(得分:0)
使用以下语法:
<fileset dir="${dirpath}"> <exclude name="**/*.xml" /> </fileset>