Title: RE: Let's try this again

That did it.  Thanks.  I was trying to use a regex mapper and I guess I missed something in the regex.

Patrick O'Hara
262-408-3849
[EMAIL PROTECTED]




-----Original Message-----
From: Larry V. Streepy, Jr. [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 22, 2001 3:41 PM
To: [EMAIL PROTECTED]
Subject: Re: Let's try this again


The example in the ANT manual shows this:

<move todir="my/src/dir" >
    <fileset dir="my/src/dir" >
      <exclude name="**/*.bak"/>
    </fileset>
    <mapper type="glob" from="*" to="*.bak"/>
</move>

A simple change should get you what you want, like this:

<move todir="my/src/dir" >
    <fileset dir="my/src/dir" includes="**/*.zip"/>
    <mapper type="glob" from="*" to="*.bak"/>
</move>

--
Larry V. Streepy, Jr.
Chief Technical Officer and VP of Engineering

Health Language, Inc.  -- "We speak the language of healthcare"

970/626-5028 (office)           mailto:[EMAIL PROTECTED]
970/626-4425 (fax)              http://www.healthlanguage.com

Reply via email to