You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Stefano Nichele <st...@gmail.com> on 2008/06/14 12:28:27 UTC

Handling files without extension with Fileset

Hi all,
is there a way to define a FileSet for the files in a given directory 
without extension ?
I'm using ANT 1.6.5.

Thanks in advance
ste

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Handling files without extension with Fileset

Posted by Gilbert Rebhan <an...@schillbaer.de>.
Stefano Nichele schrieb:
> Hi all,
> is there a way to define a FileSet for the files in a given directory 
> without extension ?
> I'm using ANT 1.6.5.

<fileset dir="/home/foobar" id="yourfileset">
  <include name ="*"/>
  <exclude name="*.*"/>
</fileset>

Regards, Gilbert

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org