码迷,mamicode.com
首页 > 其他好文 > 详细

ant学习之copy命令

时间:2014-10-28 10:19:18      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   ar   sp   文件   div   

<?xml version="1.0" ?>
<project name="antCopy" default="target1" basedir="../">
    <property name="srcFile" value="E:/workspace/AntDemo/ant/test/test01/1.txt">
    </property>
    <property name="destFile" value="E:/workspace/AntDemo/ant/test/test02/3.txt">
    </property>
    <property name="descDir" value="E:/workspace/AntDemo/ant/test/test02" />
    <property name="destDir" value="E:/workspace/AntDemo/ant/test/test03" />
    <target name="target1">
        <echo message=" ant copy from ${srcFile} to ${destFile}" />
        <copy file="${srcFile}" tofile="${destFile}">
        </copy>
        <copy file="${srcFile}" todir="${descDir}" />
        <copy todir="${destDir}">
                <fileset dir="E:/workspace/AntDemo/ant/test/test02"></fileset>
        </copy>
    </target>
</project>

<!--
  copy 命令
    copy主要用来对文件和目录的复制功能。举例如下:
eg1. 复制单个文件:
<copy file="original.txt" tofile="copied.txt"/>
eg2. 对文件目录进行复制:
<copy todir="../dest_dir">
      <fileset dir="src_dir"/>
 </copy>
eg3. 将文件复制到另外的目录:
<copy file="source.txt" todir="../home/philander"/>
-->

ant学习之copy命令

标签:des   style   blog   io   color   ar   sp   文件   div   

原文地址:http://www.cnblogs.com/jfzh/p/4056108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!