Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
# copy files to a remote share requiring authentication # # This program demonstrates how to find a free drive letter # on the local machine, setting up the shared connection, # copying the file over and then tearing down the connection # afterwards. I hope this helps someone else save the two hours # it took me to gather all the loose ends together. # # copyright (c) David Landgren 2005 # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. use strict; use warnings; use Win32::NetResource qw/GetUNCName AddConnection CancelConnection/; use Win32API::File qw/ CopyFile fileLastError /; use constant SHARE_NAME => '\\\\remote_svr\\sharename'; # must use bac +kslashes use constant USER_NAME => 'myusername'; use constant PASSWORD => 'mysekretpassword'; my $drive; for my $letter ('g' .. 'z' ) { my $mapped; $drive = "$letter:"; GetUNCName( $mapped, $drive ); last if not $mapped; } my $share = { RemoteName => SHARE_NAME, LocalName => $drive, }; print "connecting $share->{RemoteName} to $share->{LocalName}\n"; if( not AddConnection( $share, PASSWORD, USER_NAME, 0 )) { die "connection error:\n", win32err(); } for my $file( @ARGV ) { print "copying $file\n"; CopyFile( $file, "$share->{LocalName}$file", 0 ) or print "\tfailed: " . fileLastError() . "\n"; } if( not CancelConnection( $share->{LocalName}, 0, 1 )) { print "disconnection error:\n", win32err(); } sub win32err { my $err; # Win32::GetError($err); -- bug spotted by puploki Win32::NetResource::GetError($err); Win32::FormatMessage($err); }

In reply to Copying files to an authenticated Win32 share by grinder

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-18 03:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found