That's something I might not be able to help you with.  I think that in
order to open a directory on a *NIX box, you would have to use an NFS mount
or some other way of mounting the remote volume on your machine, but I'm not
remotely a UNIX guru.  

Network paths that require a logon is a tougher one.  On Windows I would
probably just map the drive.  If you want to go down that road you can check
out Win32::Lanman's NetUseAdd() function.  It's a huge module, but it has
just about every Win32 networking API there is.

-----Original Message-----
From: Paul Kraus [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 14, 2003 12:05 PM
To: 'Paul Kraus'; 'Timothy Johnson'; 'Perl'
Subject: RE: Directory Handle - Network Math NOT mapped


This worked great on my dev machine (win xp pro) but when I sent it to
my sco box (openserver 5) it does not understand the UNC paths.

Ideas?

> -----Original Message-----
> From: Paul Kraus [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, January 14, 2003 2:20 PM
> To: 'Timothy Johnson'; 'Perl'
> Subject: RE: Directory Handle - Network Math NOT mapped
> 
> 
> How do I handle network paths that require a login ?
> 
> > -----Original Message-----
> > From: Timothy Johnson [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, January 14, 2003 2:14 PM
> > To: 'Paul Kraus'; Perl
> > Subject: RE: Directory Handle - Network Math NOT mapped
> > 
> > 
> > 
> > It shouldn't be a problem.  Just use the UNC path.
> > 
> > opendir(DIR,"//computer/share/folder") || die "could not open
> > folder!";
> > opendir(DIR,"\\\\computer\\share\\folder") || die "could not 
> > open folder!";
> > 
> > -----Original Message-----
> > From: Paul Kraus [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, January 14, 2003 10:41 AM
> > To: Perl
> > Subject: Directory Handle - Network Math NOT mapped
> > 
> > 
> > how can I create a directory handle for network path? is it
> > possible without having a mapped drive?
> > 
> > Paul Kraus
> > Network Administrator
> > PEL Supply Company
> > 216.267.5775 Voice
> > 216-267-6176 Fax
> > www.pelsupply.com
> > 
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to