You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bu...@apache.org on 2009/01/28 05:57:34 UTC

DO NOT REPLY [Bug 46614]
https://issues.apache.org/bugzilla/show_bug.cgi?id=46614


Stefan Bodewig <bo...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME




--- Comment #1 from Stefan Bodewig <bo...@apache.org>  2009-01-27 20:57:34 PST ---
Hmm,

seems to work using

<project>

  <mkdir dir="${java.io.tmpdir}/foo/bar"/>
  <touch file="${java.io.tmpdir}/foo/baz"/>

  <move file="${java.io.tmpdir}/foo"
        tofile="${java.io.tmpdir}/xyzzy"/>
</project>

stefan@birdy:~$ ant -f /tmp/test.xml 
Buildfile: /tmp/test.xml
    [mkdir] Created dir: /tmp/foo/bar
    [touch] Creating /tmp/foo/baz

BUILD SUCCESSFUL
Total time: 0 seconds

stefan@birdy:~$ ls /tmp/xyzzy/
bar  baz


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.