Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to execute a command from an Ant buildfile, for each file in a directory.
I am looking for a platform-independent solution.

How do I do this?

Sure, I could write a script in some scripting language, but this would add further dependencies to the project.

share|improve this question

5 Answers

up vote 26 down vote accepted

Short Answer

Use <foreach> with a nested <FileSet>
( http://ant-contrib.sourceforge.net/ )

Updated Example for recent ant-contrib:

This will antcall the target "bar" with the ${theFile} resulting in the current file.

Example

Here is an example which foreach file matching the fileset's filters... will invoke the ant target "bar".

This example was taken from Original Source
Documentation on AntCall can be found:Here

In build.properties:

foreach.file--a full filename from the defined fileset,
foreach.dir--the directory of the file,
foreach.name.ext--the name of the file, without path but with extension,
foreach.name--the name of the file, without path and without extension

Example:

 <target name="foo">
   <foreach>
     <fileset dir="${server.src}" casesensitive="yes">
       <include name="**/*.java"/>
       <exclude name="**/*Test*"/>
     </fileset>
     <antcall target="bar">
       <param name="property1" value="aaaaa" />
       <param name="foo" value="bar" />
     </antcall>
   </foreach>
 </target>

 <target name="bar" depends="init">
   <echo message="prop is ${property1} ${foo}" />
   <echo message="foreach.file is ${foreach.file}" />
   <echo message="foreach.dir is ${foreach.dir}" />
   <echo message="foreach.name.ext is ${foreach.name.ext}" />
   <echo message="foreach.name is ${foreach.name}" />
 </target>
share|improve this answer
So, I have to include something? Or do I need some external ant lib? I'm getting "Problem: failed to create task or type foreach". If I understand correctly, this means, foreach is an unknown keyword. – ivan_ivanovich_ivanoff Sep 23 '09 at 19:48
Ohhh lame... it's an Ant-Contrib Task. So, you have to install something. See here: ant-contrib.sourceforge.net – blak3r Sep 23 '09 at 20:47
24  
This is actually an incorrect answer because this example results in an error: foreach doesn't support the nested "antcall" element. I am unsure how this got marked as the accepted answer. – Michael Feb 24 '12 at 15:04
1  
Agreed. Results in error: "Invalid type class org.apache.tools.ant.taskdefs.CallTarget used in For task, it does not have a public iterator method" – Jason Jun 15 '12 at 21:32

Use the <apply> task.

It executes a command once for each file. Specify the files by means of filesets or any other resource. <apply> is built-in; no additional dependency needed; no custom task implementation needed.

It's also possible to run the command only once, appending all files as arguments in one go. Use the parallel attribute to switch the behaviour.

Sorry for being late a year.

share|improve this answer
3  
Well I just found this useful in 2011, so thanks for that anyway! – Michael Della Bitta Jan 16 '11 at 2:33
Still now. Thanks – Michael Laffargue Jul 30 '12 at 7:44
That was the solution to a problem I had too, so cheers! – Emma Burrows Mar 12 at 12:31

An approach without ant-contrib is suggested by Tassilo Horn (the original target is here)

Basicly, as there is no extension of <java> (yet?) in the same way that <apply> extends <exec>, he suggests to use <apply> (which can of course also run a java programm in a command line)

Here some examples:

  <apply executable="java"> 
    <arg value="-cp"/> 
    <arg pathref="classpath"/> 
    <arg value="-f"/> 
    <srcfile/> 
    <arg line="-o ${output.dir}"/> 

    <fileset dir="${input.dir}" includes="*.txt"/> 
  </apply> 
share|improve this answer
1  
The links are broken. – prolink007 Feb 3 '12 at 15:18
1  
This is not very platform independent although it was clearly required in the original question... – Michel Nolard Mar 21 '12 at 11:20

ant-contrib is evil; write a custom ant task.

ant-contrib is evil because it tries to convert ant from a declarative style to an imperative style. But xml makes a crap programming language.

By contrast a custom ant task allows you to write in a real language (Java), with a real IDE, where you can write unit tests to make sure you have the behavior you want, and then make a clean declaration in your build script about the behavior you want.

This rant only matters if you care about writing maintainable ant scripts. If you don't care about maintainability by all means do whatever works. :)

Jtf

share|improve this answer
Your're right, I should just write a custom ant task in Java ;) – ivan_ivanovich_ivanoff Sep 25 '09 at 19:46
1  
ant-contrib really is evil. Right now I'm in the middle of a large ant build project that makes intense use of if/then/else and antcalls and it really reads horrible. The whole thing looks like a converted batch/shell script and all the dependency stuff that ant does is completly turned off by the heavy use of ant-contrib. If you want to keep your setup clean, build your own task. :-/ – cringe Feb 15 '10 at 8:13
@cringe, I disagree. Like anything, you have to know when it is in your best interests to use ant-contrib. Stay away from things like if and var and use ant-contrib to avoid having to reinvent the wheel. – Neil Sep 19 '12 at 12:45
And should've been a scripting language, so imperative and not declarative, to begin with. So it's And who is evil IMO – mvmn Oct 11 '12 at 16:20

Here is way to do this using javascript and the ant scriptdef task, you don't need ant-contrib for this code to work since scriptdef is a core ant task.

<scriptdef name="bzip2-files" language="javascript">
<element name="fileset" type="fileset"/>
<![CDATA[
  importClass(java.io.File);
  filesets = elements.get("fileset");

  for (i = 0; i < filesets.size(); ++i) {
    fileset = filesets.get(i);
    scanner = fileset.getDirectoryScanner(project);
    scanner.scan();
    files = scanner.getIncludedFiles();
    for( j=0; j < files.length; j++) {

        var basedir  = fileset.getDir(project);
        var filename = files[j];
        var src = new File(basedir, filename);
        var dest= new File(basedir, filename + ".bz2");

        bzip2 = self.project.createTask("bzip2");        
        bzip2.setSrc( src);
        bzip2.setDestfile(dest ); 
        bzip2.execute();
    }
  }
]]>
</scriptdef>

<bzip2-files>
    <fileset id="test" dir="upstream/classpath/jars/development">
            <include name="**/*.jar" />
    </fileset>
</bzip2-files>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.