On 6/14/07, Jim C. <[EMAIL PROTECTED]> wrote:
I have directory X and I want to copy it such that the copy becomes a
subdirectory of directory Y.  What's the easiest way to accomplish this?

I suggest:

        <target name="directoryCopy">
                <copy todir="${tdestination}">
                        <fileset dir="${source}" />
                </copy>
        </target>

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

Reply via email to