我试图使用ant将文件从sourceDir
复制到destDir
,我也不想复制一些文件,我保留了我想要排除的文件名在file: excludelist.txt中。我怎样才能实现这一目标呢?
使用嵌套的exludesfile对嵌套文件集使用复制任务
excludesfile =>文件名;该文件的每一行都被取为是一个排除模式
片段:
<target name="foo">
<copy todir="path/to/destDir">
<fileset dir="path/to/sourceDir">
<excludesfile name="excludelist.txt"/>
</fileset>
</copy>
</target>