在ANT中使用条件长度



我目前正在尝试在ANT中使用长度任务,更具体地说,是创建一个条件长度任务。

我想标记一个消息给当前存在的文件,如果一个文件大于设置的长度,像这样:

<project name="ant" default="check-filesize">
<target name="check-filesize">
    <length mode="all" property="fs.length.bytes" when="gt" length="100">
    <fileset dir="size" includes="*"/>
    </length>
    <echo>sorry your file set is to large</echo>
</target>
</project>

我已经编写了代码来打印目录中所有文件的大小,但为了保持简短,我没有在这里包括它。

如果长度不允许echo标记,我可以用另一种方式执行吗?如果不允许,有人知道when标记的作用吗?显然,我只希望在违反条件时才会出现回显

提前致谢

我发现了一种不使用外部库的方法,但是感谢您的帮助。方法如下:

<project name="ant" default="check-filesize">
<target name="check-filesize">
  <fail message="Your File Exceeds Limitations Please Operator For Full Size Of Data Set>
    <condition>
      <length length="1000" when="gt" mode="all" property="fs.length.bytes">
         <fileset dir="size" includes="*"/>
      </length>
    </condition>
   </fail>
 </target>
 </project>

下面是一种使用Ant内置任务有条件回显语句的方法:

<project name="ant-length" default="check-filesize">
    <target name="check-filesize" depends="get-length, echo-if-large"/>
    <target name="get-length">
        <condition property="fs.length.too.large">
            <length mode="all" when="gt" length="100">
                <fileset dir="size" includes="*"/>
            </length>
        </condition>
    </target>
    <target name="echo-if-large" if="fs.length.too.large">
        <echo>sorry your file set is too large</echo>
    </target>
</project>

第三方Ant-Contrib库有一个<if>任务来简化这个。

相关内容

  • 没有找到相关文章

最新更新