Brian Volk wrote:
Hi All,

Hello,

I created a script that renames a dir of MP3 files... Everything is

Perhaps File::Copy::Recursive can assist you in this?

http://search.cpan.org/~dmuey/File-Copy-Recursive-0.02/Recursive.pm

use File::Copy::Recursive 'dircopy';

dircopy($orig,$new) or die "Copying $orig failed: $!";
unlink $orig or die "Removing $orig failed: $!";

HTH :)

Lee.M - JupiterHost.Net

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to