本文介绍了如何使用Ant复制目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用 copydir
复制目录树但不推荐使用。我的目录包含一些子目录,其中一些包含文件,另一些包含更多子目录。
I have used copydir
to copy a directory tree but it is deprecated. My directory contains some sub-directories, and some of those contain files and others contain more sub-directories.
如何复制整个树?
推荐答案
<copy todir="${dest.dir}" >
<fileset dir="${src.dir}" includes="**"/>
</copy>
相信会做你想做的......(递归复制)
believe that will do what you want... (Recursive copy done)
这篇关于如何使用Ant复制目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!