Hi,
I am trying to fetch the folder names under main_wa using a perl module. For some reason when i use opendir () is not working..
$filename = "/.iwmnt/EMEA/main/Intranet/...."
opendir ( DIR, "$filename" )...
it output cannot open the dir.. . (though the permssion are set properly..)
Then i tried another logic
@web_dir = qx( ls -l $filename | grep ^d |awk '{print \$9}' );
now it displays list of all files under $filename.. the grep and awk function is not working..
Can somebody help me out.. its very urgent
Sara...