Hi there,
I have the following sinppet of code
#!C:\Perl\bin\perl.exe
print "Content-type: text/html\r\n\r\n";
print "<Head>";
print "<Title>";
print "Contents of directory";
print "</Title>";
print "<body bgcolor='#CCFFFF'>";
$dir='\\\\<ip addr>\\abc\\def\\';
if(!opendir(DIR, $dir);){
print "Can't Open Directory $dir";
closedir DIR;
die;
}
@dots = readdir(DIR);
foreach (@dots){
print "$_\n";
print "<br>";
}
closedir DIR;
This fails and it flags an error sayin it cannot open the directory.
The same thing works fine wen executed on command prompt .
but we try in HTML it is not working ..
also tried mapping the n/w to a drive and opening it again it fails ...
n e clues ???
curcio
snitch