我想使用ant脚本将文件复制到路径不固定但最后一个文件夹名称不固定的目录中。路径D:\Home\Config\plugins\1780。最后一个文件夹名称(1780)是随机更改的,并且不是固定的。我想把一份战争文件复制到那个文件夹里。我该怎么做。
谢谢,Prashant
您应该在plugins子目录上迭代(一次)并复制到(only?)条目。
<target name="run">
<foreach target="loop" param="loop.param">
<dirset dir="D:HomeConfigplugins" />
</foreach>
</target>
<target name="loop">
<copy todir="$loop.param">
...
</copy>
</target>