Ant学习点滴

1、引用属性文件

   <property file="conf.properties">

 

2、定义属性

   <property name="copy.conf.todir" value="${projet.dir}/server/conf/s*s">

 

3、所有文件拷贝到一个文件夹下面,不拷贝文件目录结构。

<copy todir="${project.dri}/server/default/lib/runtime" preservelastmodified="true" flatten="true">

    <fileset dir="${dest.dir}">

        <include name="**/*.jar>

   </fileset>

</copy>

 

4、copy单个文件

  <copy tofile="" , file=""/>

 

5、删除文件夹

 <delete  dir="" />

 

你可能感兴趣的:(ant)