如何从phing / ant FileSet中排除基目录

时间:2013-04-17 22:27:02

标签: ant phing fileset build-tools

我有一个phing构建目标,我想直接在我的项目基础上的每个目录上运行。我正在使用带有文件集的foreach任务来在每个目录上运行目标。我遇到的问题是包含基本目录,文件名为“”。

以下是目录结构的示例:

One
Two
build.xml

这是一个简单的构建文件来测试:

<?xml version="1.0" encoding="UTF-8"?>

<project name="Test" default="test">

    <target name="test">
        <foreach param="filename" absparam="absfilename" target="echo-file">
            <fileset dir="${project.basedir}">
                <include name="*" />
                <exclude name="*.*" />
            </fileset>
        </foreach>
    </target>

    <target name="echo-file">
        <echo message="filename: ${filename}" />
        <echo message="absfilename: ${absfilename}" />
    </target>

</project>

这是构建的结果(注意第一个带有空文件名的条目):

Buildfile: /Users/dmertl/test/build.xml

Test > test:

  [foreach] Calling Buildfile '/Users/dmertl/test/build.xml' with target 'echo-file'

Test > echo-file:

     [echo] filename: 
     [echo] absfilename: /Users/dmertl/test/
  [foreach] Calling Buildfile '/Users/dmertl/test/build.xml' with target 'echo-file'

Test > echo-file:

     [echo] filename: One
     [echo] absfilename: /Users/dmertl/test/One
  [foreach] Calling Buildfile '/Users/dmertl/test/build.xml' with target 'echo-file'

Test > echo-file:

     [echo] filename: Two
     [echo] absfilename: /Users/dmertl/test/Two

1 个答案:

答案 0 :(得分:0)

不确定我第一次没想到这个,但这是解决方案:

<foreach param="filename" absparam="absfilename" target="echo-file">
    <fileset dir="${project.basedir}">
        <include name="*" />
        <exclude name="/" />
        <exclude name="*.*" />
    </fileset>
</foreach>

排除文件集中的“/”会删除根目录。