in reply to Move multiple files?

It doesn't look like File::Copy supports globing, so you'll have to handle that part of it yourself and iterate over the results...

foreach my $file ( glob($fileFrom) ) { move($file, $fileTo); )

    --k.