> Is there a Perl way to move a folder with out doing it one file at a
> time?  (Similar to M$ Windows Explorer where you can drag a folder to
> another folder?)

In some cases:

    rename $Old $New;

will work.

In some cases, 

    system ("mv $Old $New");

will work.

There's a bit more detail in:

    perldoc -f rename

Reply via email to