I'm having a problem that I can't figure out. Below is a snippet of my code that's not functioning the way I believe it should..
opendir (PIX_DIR, ".") or die $!;
foreach $file (readdir(PIX_DIR)) {
print "$file\n";
if ($file =~ /^\./ || $file == '') {
next;
}
print...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.