in reply to Moving Directory Trees in Win32
As a side note I thought I remember seeing a mv option in File::Copy.
-Nitrox
use File::Copy; move ("somefile", "somewhere") || die "Couldn't move somefile to somew +here - $!\n"; [download]