Ant:查找目录中文件的路径

时间:2011-12-20 12:14:14

标签: file ant path find

我想在目录中找到文件的路径(类似于unix'find'命令或'which'命令,但我需要它与平台无关)并将其保存为属性。

尝试使用whichresource ant任务,但它没有做到这一点(我认为它只适用于查看jar文件)。

我更喜欢它是纯粹的蚂蚁而不是写我自己的任务或使用第三方扩展。

请注意,路径中可能有多个按该名称生成的文件实例 - 我希望它只返回第一个实例(或者至少我希望只能选择一个实例)。

有什么建议吗?

3 个答案:

答案 0 :(得分:24)

一种可能性是使用first资源选择器。例如,在目录a.jar下的某处找到名为jars的文件:

<first id="first">
    <fileset dir="jars" includes="**/a.jar" />
</first>
<echo message="${toString:first}" />

如果没有匹配的文件,则不会回显任何内容,否则您将获得第一场比赛的路径。

答案 1 :(得分:7)

以下是选择第一个匹配文件的示例。逻辑如下:

  • 使用fileset找到所有匹配。
  • 使用pathconvert,将结果存储在属性中,使用行分隔符分隔每个匹配的文件。
  • 使用head filter匹配第一个匹配的文件。

该功能封装在macrodef中以便可重用。

<project default="test">

  <target name="test">
    <find dir="test" name="*" property="match.1"/>
    <echo message="found: ${match.1}"/>
    <find dir="test" name="*.html" property="match.2"/>
    <echo message="found: ${match.2}"/>
  </target>

  <macrodef name="find">
    <attribute name="dir"/>
    <attribute name="name"/>
    <attribute name="property"/>
    <sequential>
      <pathconvert property="@{property}.matches" pathsep="${line.separator}">
        <fileset dir="@{dir}">
          <include name="@{name}"/>
        </fileset>
      </pathconvert>
      <loadresource property="@{property}">
        <string value="${@{property}.matches}"/>
        <filterchain>
          <headfilter lines="1"/>
        </filterchain>
      </loadresource>
    </sequential>
  </macrodef>

</project>

答案 2 :(得分:0)

我根据马丁·克莱顿的回答创建了一个宏。

具有宏和从找到的文件中读取的属性文件的示例项目

<?xml version="1.0" encoding="utf-8"?>
<project name="test properties file read" default="info">

<macrodef name="searchfile">
    <attribute name="file" />
    <attribute name="path" default="custom,." />
    <attribute name="name" />
    <sequential>
        <first id="@{name}">
            <multirootfileset basedirs="@{path}" includes="@{file}" erroronmissingdir="false" />
        </first>
        <property name="@{name}" value="${toString:@{name}}" />
    </sequential>
</macrodef>

<searchfile name="custom.properties.file" file="config.properties" />
<property file="${custom.properties.file}" />

<target name="info" >
    <echo>
origin ${config.origin}
</echo>

</target>