ant只复制目录树(文件夹)

 

 

<target name="copy">
	<copy todir="${COMPRESSED_HOME}" includeEmptyDirs="true" overwrite="true">
	    	<!--复制目录树-->
		<fileset dir="${JS_HOME}" >
	    		<exclude name="**/*.*" />
		</fileset>
		<!--复制其他文件-->
		<fileset dir="${JS_HOME}" >
	    		<include name="**/*.min.js" />
	    		<include name="**/*.swf" />
		</fileset>
	</copy>
</target>

 

 fileset 可以写多个

copydir 是不被推荐使用的

你可能感兴趣的:(ant,copy,复制,目录,文件夹)