Nice work! This looks good, and useful, too. Here are a few suggestions:
You open a filehandle
FL to each file you examine, but you never read from it. I would remove the code related to this filehandle:
open(FL, $File::Find::name);
...
close(FL);
Inside a subroutine, you should use
return rather than
next. If you use the code as is, you will see warnings from Perl such as "exiting subroutine via next at script.pl line...":
$tag = get_mp3tag($_) or print "Could not access tag on $_\n" and next;
becomes
$tag = get_mp3tag($_) or print "Could not access tag on $_\n" and return;
For portability, use
File::Spec to generate file or directory names:
use File::Spec::Functions qw(catdir);
...
$newdir = catdir( $dstdir => $dir );
File::Path::mkpath raises an exception on error. You'll want to wrap that call in
eval. Also, the second argument is a boolean flag that controls printing of the directories as they are created. The third argument is the mode, for which you'll need to have execute permissions on if you want to create subdirectories:
eval { mkpath($newdir, 0, 0755) };
if ($@) {
print "can’t mkdir $newdir: $@";
}
Finally, as a simple style change, you can reduce the indentation level of the code in your
wanted subroutine if you use the statement modifier forms of
if/unless.
Here is a different version of your script with the changes described above:
use strict;
use MP3::Info;
use File::Find;
use File::Copy;
use File::Basename;
use File::Path;
use File::Spec::Functions qw(catdir);
my $genre = 'Country';
my $srcdir = '/MP3 Test/';
my $dstdir = 'c:/';
find(\&wanted, $srcdir);
# note: now vars ($dir, etc.) scoped to subroutine (per Jaap)
sub wanted {
# anchor regex to end of filename
return unless /\.mp3\z/;
my $tag = get_mp3tag($_) or print "Could not access tag on $_\n" a
+nd return;
return unless $tag->{"GENRE"} eq $genre;
my $path = $File::Find::name;
my $dir = dirname($path);
my $newdir= catdir( $dstdir => $dir );
if (! -d $newdir ) {
eval { mkpath($newdir, 0, 0755) };
if ($@) {
print "can’t mkdir $newdir: $@";
}
}
# don't need basename($path), just pass copy()
# a directory as the second argument
copy($path => $newdir) or die "copy failed: $!\n";
}
You can make the script even more useful by allowing the user to specify the genre, source directory, and destination directories on the command line.
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.