Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Still no luck. any advise??$dir = "\\Infoserver\firstdirectory\seconddirectory\mydirectory"; $dir = "//Infoserver/firstdirectory/seconddirectory/mydirectory"; $dir = "////Infoserver/firstdirectory/seconddirectory/mydirectory";
#perl on nt $dir = "\\\Infoserver\firstdirectory\seconddirectory\mydirectory"; opendir(DIR, $dir) || die "Can not open: $!\n"; while(defined ($file = readdir DIR)) { print "$file\n" } closedir(DIR);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Open NT inforserver from NT workstation
by osama (Scribe) on Jan 06, 2003 at 15:33 UTC | |
by Anonymous Monk on Jan 06, 2003 at 15:55 UTC | |
by Marza (Vicar) on Jan 06, 2003 at 18:50 UTC | |
by Jenda (Abbot) on Jan 06, 2003 at 19:51 UTC | |
by Marza (Vicar) on Jan 06, 2003 at 18:58 UTC | |
|
Re: Open NT inforserver from NT workstation
by Anonymous Monk on Jan 06, 2003 at 13:30 UTC | |
|
Re: Open NT inforserver from NT workstation
by Marza (Vicar) on Jan 06, 2003 at 18:21 UTC |