On Tue, 30 Jul 2002, Tibor Strausz <[EMAIL PROTECTED]> wrote:
>> <move> in Ant 1.5 should be fast enough as long as you are not
>> leaving any files via excludes in the directory to move.
> 
> well not with me :(

Let's see whether we can improve the situation, then.

<move> will first scann you complete directory tree which may take
some time, this is the overhead <move> has over <rename>.  But in your
case <move> thinks that it must not simple perform a File#renameTo on
the directory (otherwise the summary would read differently), the
reasons for which could be:

(1) filters.  Do you define any filters, filtersets or filterchains?

(2) The target directory exists and cannot be deleted (not empty?).

(3) The directory contains files that don't get moved.  Does Ant
successfully delete ${srcDir} at the end of <move>?

Stefan

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

Reply via email to