I'm running a perl script from a web page. My script does an "opendir" to check for the existence of a directory:
$dir1 = "\\servername\directory";
if (opendir(DIR,"$dir1"
!= 1)
{
&errCanNotOpenDir;
}
When running the script through a Netscape browser, the call to opendir returns one (1) for a directory that I've verified exists. If I run in IE, with the same directory, the opendir command returns no value.
Anyone know why I might be getting different results?
$dir1 = "\\servername\directory";
if (opendir(DIR,"$dir1"
{
&errCanNotOpenDir;
}
When running the script through a Netscape browser, the call to opendir returns one (1) for a directory that I've verified exists. If I run in IE, with the same directory, the opendir command returns no value.
Anyone know why I might be getting different results?