从classpath ant中排除xml文件

时间:2015-04-21 13:37:10

标签: xml ant

我想从classpath中排除xml文件。

我试过了:

<fileset dir="${dirpath}" excludes="**/*.xml" />

但它不起作用。

1 个答案:

答案 0 :(得分:0)

使用以下语法:

<fileset dir="${dirpath}">
    <exclude name="**/*.xml" />
</fileset>