I have a snippet of code I use in a Perlscript I’m using with IIS on a Windows NT Server that seems to work fine to see if some network shares that have been mapped to the F and G drives exist.  However, after migrating the code to IIS on Windows 2003 Server, it doesn’t seem to work.  Has something changed between versions?  Any help would be VERY appreciated.

 

Thanks!

Craig Norris

MetaMAP, Inc.

 

$fexst = 0;

$gexst = 0;

if (opendir(DIR, 'f:\\frankortho\\')) {

 $fexst = 1;

 closedir DIR;

}

if (opendir(DIR, 'g:\\images\\')) {

 $gexst = 1;

 closedir DIR;

}

 

 

_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to