我有2套属性。一个是文件列表,另一个是dirs列表。喜欢这个
Files = file1,file2,file3,file4
destination.dir = DIR1,DIR2,DIR3,dir4
这两个属性在build.properties中定义。
我想将file1复制到dir1,将file2复制到dir2,依此类推。
我怎样才能在蚂蚁中实现这个目标?
由于
答案 0 :(得分:1)
使用Ant插件Flaka
的解决方案<project xmlns:fl="antlib:it.haefelinger.flaka">
<!-- make standard ant tasks like copy understand EL expressions -->
<fl:install-property-handler />
<property name="files" value="/some/path/file1,/some/path/file2,/some/path/file3,/some/path/file4"/>
<property name="destination.dir" value="/some/otherpath/dir1,/some/otherpath/dir2,/some/otherpath/dir3,/some/otherpath/dir4"/>
<!-- iterate over the csv property destination.dir -->
<fl:for var="dir" in="split('${destination.dir}', ',')">
<!-- copy the first item from csv property ${files} -->
<copy file="#{split('${files}',',')[0]}" todir="#{dir}" verbose="true"/>
<!--
afterwards delete this file item from csv property ${files}, means
editing and overwriting ${files} for the next loop
-->
<fl:let>files ::= replace('${files}', '' , '#{split('${files}',',')[0]},?' )</fl:let>
</fl:for>
</project>
或者在脚本任务中使用一些脚本语言作为groovy,beanshell,(j)ruby,javascript ..