Hi,

Does anyone know if there's anything in Ant that can copy files from a
directory to another directory but change all the file names to lower case?

e.g.

working/some_folder/etc/Blah.jpg => dist/some_folder/etc/blah.jpg
...
etc. for a whole load of files in various directories.

Perhaps there's something I can add to this?

<copy todir="${dist.dir}/images">
    <fileset dir="images"/>
</copy>

If there's nothing in Ant directly, I'm going to have to write a PHP script
that does the renaming but I'd prefer not to create more scripts.

Any help would be much appreciated.

Many Thanks!

-- 
View this message in context: 
http://www.nabble.com/how-can-I-copy-a-directory-of-files-to-lower-case-equivalents--tf4554266.html#a12996743
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to