JackTheRussel
Programmer
Hi.
I have tried to glob all files which extensions are .wav, .mid, .mp3
I don't know how to "use" regular expression, could some on help me?
Now I can glob only files which extension are .mp3
I have tried to glob all files which extensions are .wav, .mid, .mp3
I don't know how to "use" regular expression, could some on help me?
Now I can glob only files which extension are .mp3
Code:
#Go to folder where music-files locate.
my $music_path = "/home/some/music";
chdir ($music_path) || die "Cannot chdir to $music_path ($!)";
#glob all filenames which extension are .mp3
my @a = glob("*.mp3");
for (my $i=0; $i<@a; $i++){
do something...
}