比方說,我有這樣的目錄結構:螞蟻:重命名同名的子目錄
- 動物/狗/細節
- 動物/ CAT /細節
- 動物/青蛙/細節
- 動物/馬/細節
使用螞蟻,我想重新命名animals
下的所有子目錄稱爲details
現在被命名爲new
。所以結果會是這樣:
- 動物/狗/新
- 動物/ CAT /新
- 動物/青蛙/新
- 動物/馬/新
我我試過這樣的事情:
<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.
可能重複http://stackoverflow.com/questions/1041213/how-to-rename-a-folder-using-ant –
我不認爲這涉及到礦山作爲一個不與多個子處理-directories。 – digiarnie