From: Timothy Johnson <[EMAIL PROTECTED]>
> 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.

Both Win32::Lanman and Win32::FileOp allow you to connect a share 
without assigning a drive letter.

        use Win32::FileOp qw(Map);
        Map '' => '\\\\server\share', 
                {user => $username, passwd => $password}
                or die "Can't connect the share : $^E\n";

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


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

Reply via email to