Tim Dallmann:
>Any suggestions as to the best way to rename a folder. Can the exec task
be
>used to issue DOS commands?
Yes, the exec task can be used for that. Use cmd.exe with the /C flag:
Another way is via the script task:
[ "rendir.from" ],
project.Properties[ "rendir.to" ] );
}
]]></code>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Tim Dallmann
> Sent: Thursday, October 23, 2003 12:45
Hi All,
I am trying to rename a directory within my build. For lack of a Rename task
in NAnt, I tried to attempt using mkdir and move tasks, but it appears that
the move does not recuse subdirectories.
Any suggestions as to the best way to rename a folder. Can the exec task be
used to issue D