vote up 0 vote down star

I want to rename my application folder with a time stamp and then unzip a newer version of my app using the same folder name using ant. From the following link, it looks like ant can allow you to move contents from a folder to another (http://ant.apache.org/manual/CoreTasks/move.html), is this the only way I can do in ant?

Thanks in advance.

flag

0% accept rate

2 Answers

vote up 0 vote down

I think the move task is what you want. Is there some reason you don't want to use it?

It sounds like you're proposing moving the folder in which your build.xml file lives. Is that right? If so, I imagine ant might not be too happy it.

link|flag
Right now in my build.xml I have it to delete the folder and then unzip a zip file which automatically creates a new folder with the same folder name. Now instead of delete the folder,I'd like to have it renamed with a timestamp appended to the folder name. – JLau Jun 25 at 12:51
vote up 0 vote down

Just spelling out the answer already given, which is correct...

<project default="move">
    <tstamp/>
    <target name="move">
        <move file="foo" tofile="foo-${TSTAMP}"/>
    </target>
</project>

This moves foo to foo-HHMM.

link|flag
I change tofile to todir and it works fine. Thanks. – JLau Jul 1 at 18:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.