Hi all,
I want to create directory with current timestamp by using ant build file. And im using ant 1.7.
This is my ant build code.
I want the folder name like this "myfolder03-13-208".
How can i do it?
Thanks,
I want to create directory with current timestamp by using ant build file. And im using ant 1.7.
This is my ant build code.
Code:
<target name="createDir"> <mkdir dir="myfolder"/> </target>
How can i do it?
Thanks,