I'm using the following task to get a specific file from a URL and install it on my local DIR:
<project name="MobileBanking" basedir="../">
<target name="get">
<get src="https://domain/dsprdamf1/mf/node1/logs/server11_mf/trace.log" dest="Local/Logs" usetimestamp="true" username="${USERNAME}" password="${PASSWORD}"/>
</target>
</project>
However, the problem is that I have multiple files that starts with word "trace" and I need to get them all to my local directory.
I've tried the following:
<get src="https://domain/dsprdamf1/mf/node1/logs/server11_mf/trace*" dest="Local/Logs" usetimestamp="true" username="${USERNAME}" password="${PASSWORD}"/>
and
<get src="https://domain/dsprdamf1/mf/node1/logs/server11_mf/*" dest="Local/Logs" usetimestamp="true" username="${USERNAME}" password="${PASSWORD}"/>
but none worked.
What should I use to get all the files that start with word "trace" from a URL?