http://qs1969.pair.com?node_id=208756


in reply to Moving Directory Trees in Win32

Take a look at Win32::FileOp.

As a side note I thought I remember seeing a mv option in File::Copy.

-Nitrox

Replies are listed 'Best First'.
File::Copy
by vek (Prior) on Oct 29, 2002 at 16:32 UTC
    You are 100% correct Nitrox, there is indeed a 'mv' option in File::Copy, it's called 'move':
    use File::Copy; move ("somefile", "somewhere") || die "Couldn't move somefile to somew +here - $!\n";
    -- vek --