0
I have the directory structure like this
- ${src.web.dir}/templates/assets_clients/
- cliente1
- cliente2
- cliente3
I need to remove all internal folders including . svn minus the cliente3 folder and its files and directories (cliente3 is ${env.PASTA_ASSETS})
my xml build.
<target name="pack" depends="config">
<echo message="Retirando pastas de Clientes..." />
<delete includeEmptyDirs="true" >
<fileset dir="${src.web.dir}/templates/assets_clientes/" >
<include name="**/*" />
<exclude name="." />
<exclude name="${env.PASTA_ASSETS}" />
</fileset>
</delete>
<zip destfile="${nome.arquivo}">
....
</zip>
</target>
Question should be in English.
– Paulo R. F. Amorim
I don’t understand the reason but ok, it’s in Portuguese.
– Michel Anderson Lütz Teixeira
Because the language of the site is Português. If you want to ask questions in English, it should be in the Stack in English: https://stackoverflow.com
– user28595