millimeter
Programmer
I am trying to create a directory list array so that I can then check the list for a specfic directory name. I have not been able to find an example, nor do it succesfully. This is what I am supposing will work?;
while(glob("*/") {
$_(@dirlist);
}
foreach $list(@dirlist)
{
if($list eq "images/" {
&goHere;
}
Suggestions Please - Thanks in advance!
Your Friend,
millimeter
while(glob("*/") {
$_(@dirlist);
}
foreach $list(@dirlist)
{
if($list eq "images/" {
&goHere;
}
Suggestions Please - Thanks in advance!
Your Friend,
millimeter