5

我在一个文件夹中有几个 .xml 文件。我想循环每个 .xml 文件。它越来越好了。我想只取 .xml 文件名而没有完整路径。我怎样才能做到这一点。?

我正在使用下面的代码来获取文件名。

<target name="createApplicationDAA">
  <for param="program">
    <path>
      <fileset dir="${soaProjectName}/Composites" includes="**/*.xml"/>
    </path>
    <sequential>
    <propertyregex override="yes" property="file"  input="@{program}" regexp=".*/([^\.]*)\.xml" replace="\1"/>
        <echo>@{program}</echo>
    </sequential>
  </for>
</target>

文件夹名称是 C:/abc/bcd/cde first.xml,second.xml,third.xml,fourth.xml 是 cde 文件夹中的 .xml 文件。当我执行上面的代码时,它会获取整个路径,例如 C:/abc/bcd/cde/first.xml ..etc 我只想获取 first.xml 的第一个和 second.xml 的第二个。请帮我实现只有文件名。

4

1 回答 1

9

进一步调查后编辑(见评论)

使用 basename 任务时不需要正则表达式。一旦设置属性在 vanilla ant 中是不可变的,因此在 for 循环中使用 basename 任务时,属性 FileName 保存第一个文件的值。
因此必须使用 unset="true" 的 antcontrib var 任务:

 <for param="program">
  <path>
   <fileset dir="C:\whatever" includes="**/*.xml"/>
  </path>
  <sequential>
   <var name="FileName" unset="true"/>
   <basename property="FileName" file="@{program}" suffix=".xml"/>
   <echo>${FileName}</echo>
  </sequential>
 </for>
  1. 正则表达式在我的 windowsbox 上对我不起作用
  2. 您在使用 use 时回显原始文件<echo>@{program}</echo>
    <echo>${file}</echo>

意思是:

<for param="program">
 <path>
  <fileset dir="C:\whatever" includes="**/*.xml"/>
 </path>
 <sequential>
 <propertyregex override="yes" property="file" input="@{program}" regexp=".:\\.+\\(\w+).+" replace="\1"/>
 <echo>${file}</echo>
 </sequential>
</for>
于 2013-05-21T07:54:39.763 回答