假设我有一个这样的目录结构:
- 动物/狗/细节
- 动物/猫/细节
- 动物/青蛙/细节
- 动物/马/细节
使用 ant,我想将 call 下的所有子目录重命名animals
为details
named new
。所以结果是这样的:
- 动物/狗/新
- 动物/猫/新
- 动物/青蛙/新
- 动物/马/新
我试过这样的事情:
<move tofile="new">
<path id="directories.to.rename">
<dirset dir="animals">
<include name="**/details"/>
</dirset>
</path>
</move>
但是得到这个错误:
Cannot concatenate multiple files into a single file.