通过使用以下 ant 脚本,所有文件将从 source.dir 复制到 build.dir
<target name="compile" description="">
<copy todir="${build.dir}">
<fileset dir="${source.dir}"/>
</copy>
</target>
方法:
source/
1.html
2.html
html/
3.html
4.html
build/
1.html
2.html
html/
3.html
4.html
我想要以下
source/
1.html
2.html
html/
3.html
4.html
build/
1.html
2.html
3.html
4.html
任何人都可以在这里帮助我,我是蚂蚁脚本的新手!