I want to rename the directories only recursively. Basically, I want to
rename _com/_alltel/_ebusiness/........ to
com/alltel/ebusiness............... I checked out the documentation, and
figured out how to rename the files.
This is the code I am trying to useand it renames only the top most
directory leaving the subdirectories without renaming.
<target name="move" >
<move todir="." >
<fileset dir="." includes="**" >
</fileset>
<mapper type="glob" from="_*" to="*"/>
</move>
</target>
Can somebody help me out ?
Thanks in advance.
Thx
Kailash
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>