Hi,
I'm using this command to copy a directory
<target name="copyDevConf" depends="dev-create-log-dir,dev-create-conf-dir">
<delete>
<fileset dir="${conf-dir}">
<include name="*.properties"/>
</fileset>
</delete>
<copy toDir="${conf-dir}">
<fileset dir="${basedir}/conf/dev">
<include name="*.properties"/>
</fileset>
</copy>
</target>
but what I would like to copy all files in that directory except the one named
"mine.properties". What is the quickest way to do this?
- Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]