--- [EMAIL PROTECTED] wrote:
> 
> <project name="FileRead" default="Read">
>    <target name = "Read">
>  
>     <fileset dir="c:\test" id="craig">
>        <include name="**/*.txt"/>
>     </fileset>
>   <pathconvert pathsep="," refid="craig"
> property="works">
>   </pathconvert>
>    <echo file="c:\works.txt" append="true">${works}
>    </echo>
<!--SEE WHERE I ADDED THE ACTUAL PROPERTY ABOVE -->
>   
>    </target>
> </project>

HTH,
Matt

P.S. Regarding ${line.separator}, this is a Java
property that will always be available.  Some like to
alias it to a shorter name if they would be using it a
lot:  <property name="br" value="${line.separator}" />
for example.


                
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to