pathconvert

ANT - How can i echo a filename twice with FileSet & PathConvert

Hey, So i have this simple ant task that lists all png files in a folder. <target name="listimages"> <!-- Assume files a A and B --> <fileset id="dist.contents" dir="${basedir}"> <include name="**/*.png"/> </fileset> <pathconvert pathsep="${line.separator}" property="prop.dist.contents" refid="dist.contents"> ...