> -----Original Message-----
> From: Rajesh Kumar [mailto:rajeshkumarmaht...@gmail.com] 

> I have one file called list.txt where i have mentioned all 
> the files which need to be copied from specific directry.
> 
> can you please help me with the right copy task syntax which 
> read the files name from list.txt and copy to destination directory???

This should work:

<!-- vim: set filetype=ant :-->
<project>
  <copy verbose="true" overwrite="yes" todir="tmp">
    <resourcelist>
      <!-- Nimmt die in der Datei enthaltenen Ressourcen (Dateinamen). -->
      <file file="filelist.txt"/>
    </resourcelist>
    <globmapper from="D:\Temp\*" to="*"/>
  </copy>
</project>

-- 
Michael Ludwig

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to