COPY包含指定字符的文件

 <target name="getSrc" depends="init">
  
  <copy todir="${pathdir}\${buildtime}" preservelastmodified="true" overwrite="true" includeEmptyDirs="false">
  <fileset dir="${srcdir}" >
    <and>
           <contains text="张建元"/>
           <!--size value="512" when="more"/-->
       </and>

  </fileset>
  </copy>
 </target>

你可能感兴趣的:(copy)