使用Ant获取包含修改文件的目录



如果目录中至少有一个修改过的文件,则需要处理该目录。我写了一个块,将文件集减少为包含这些文件的唯一目录列表,但我认为如果有一种不需要脚本的方法,这将更容易。

有办法吗?

在核心ANT中做这个很棘手。

下面是一个使用嵌入式groovy脚本的示例:

<project name="demo" default="process-modified-dirs">
    <path id="build.path">
        <pathelement location="/path/to/groovy-all/jar/groovy-all-2.1.1.jar"/>
    </path>
    <fileset id="modifiedfiles" dir="src">
        <modified/>
    </fileset>
    <target name="process-modified-dirs">
        <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="build.path"/>
        <groovy>
            dirs = project.references.modifiedfiles.collect {
                new File(it.toString()).parent
            }
            dirs.unique().each {
                ant.echo("Do something with this dir: ${it}")
            }
        </groovy>
    </target>
</project>

相关内容

  • 没有找到相关文章

最新更新