Hello!
Within my Antscript I would set a property by a list of files
like
<path id="metalevel.internet.seminar.files.path">
<fileset dir="${metalevel.internet.dir.local}/seminare/">
<include name="**/*.shtml"/>
<include name="**/*.html"/>
<include name="**/*.pdf"/>
<include name="**/*.js"/>
<exclude name="**/*.bak"/>
<exclude name="**/*.sav"/>
<exclude name="**/*~"/>
</fileset>
</path>
and
<property name="metalevel.internet.seminar.files"
refid="metalevel.internet.seminar.files.path"/>
yields all desired files separated by a ;
I need this filelist separated by a space.
How to manage this?
Greetings
Stephan
Robert Klemme - 17 Nov 2003 17:10 GMT
> Hello!
>
[quoted text clipped - 22 lines]
>
> How to manage this?
You could write the property into a file, use the "replace" task on it and
reread it as another property. Not nice, I know.
What do you need this for? Maybe there is another solution to your
problem.
robert