in reply to Re^6: Help with reading MP3's
in thread Help with reading MP3's
Have you tried stepping-through with the debugger? Where exactly is it "hanging"? You might also want to try adding a couple of prints in there for debugging purposes.
Yet another approach is to present the to-be-searched paths on the command line. Swap
with:while (<STDIN>) { chomp;
and invoke your script from the command line with: perl scriptname.pl c:\path1 c:\path2 ...foreach(@ARGV) {
Both approaches work for me.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Help with reading MP3's
by StarkRavingCalm (Sexton) on Aug 26, 2011 at 20:16 UTC |