Anyone know why is it taking 9 seconds to copy 800
files that ends with ".properties" but if I renamed
these files with ".blah", it only takes me 3 seconds?
Thanks

Here are the two different tests I used:

<copy todir="mydir/">
        <fileset dir="cache/">
                <include name="**/*.properties" />
        </fileset>
</copy>


<copy todir="mydir/">
        <fileset dir="cache/">
                <include name="**/*.blah" />
        </fileset>
</copy>

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to