我想使用基于 ANT 的部署工具。使用 ANT,我如何使用当前日期作为目录名称的一部分创建一个新目录?
Oded Harniv
问问题
40 次
1 回答
1
你可以使用这个:
<target name="account">
<tstamp>
<format property="tstamped-file-name" pattern="ddMMMyyhhmmss" locale="nl,NL"/>
</tstamp>
<if>
<available file="data/accounts.csv" property="account.present"/>
<then>
<sfdc object="AccountUpsertProcess"/>
<move todir="status-history/Account${tstamped-file-name}">
<fileset dir="data">
<include name="accounts.csv"/>
</fileset>
<fileset dir="status">
<include name="AccountUpsertProcess*.csv"/>
</fileset>
</move>
</then>
<else>
<echo message="No account file"/>
</else>
</if>
</target>
于 2013-06-04T06:57:41.820 回答