in reply to Rename a directory!!

Just use rename "oldname", "newname";
This will not work if you are moving the directory
to a different filesystem. In which case you need to
copy and delete every thing.

Replies are listed 'Best First'.
Re: Re: Rename a directory
by BazB (Priest) on Oct 06, 2002 at 19:48 UTC

    Use the standard File::Copy module's move command to move/rename files or directories across filesystem boundries.

    BazB