Perl Opendir with login?



我目前有一个功能可以从网络驱动器复制一些文件并将其粘贴到我的本地服务器文件夹中。

sub getNetworkDrive {
    #my $dir="\\network\Path";
    my ($dir, $move_to) = @_;
    opendir(DIR, $dir) or die "can't opendir $dir: $! n";
    my @files=readdir(DIR);
    closedir DIR;
    foreach my $file (@files) 
    {
        if (-f "$dir$file") 
        {  
            #my $move_to="C:\Projects\Perl\download\$file";
            my $move_from = "$dir$file";
            copy($move_from, $move_to) or die "Copy Failed: $!";
            print "File: $file : has been downloaded Successfullyn";
        }
    }
}

当我使用我的用户执行脚本时,它工作得很好,因为我的用户可以访问网络驱动器。

我想使此脚本在运行脚本时提示输入授权的用户名和密码。

那么Opendir是否接受用户名和密码作为参数? 如果没有,那么我的选择是什么?

感谢 mpapec

我为此添加了一个新功能,它现在可以工作了

use Win32::NetResource qw/GetUNCName AddConnection CancelConnection/;
use Win32API::File qw/ CopyFile fileLastError /;
sub getNetworkDrive {
    my ($share_name, $user_name, $password) = @_;
    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 $filen";
        CopyFile( $file, "$share->{LocalName}$file", 0 )
            or print "tfailed: " . fileLastError() . "n";
    }
    getNetworkDriveWithoutLogin($share->{LocalName}, "C:\Projects\Perl\download\");
    if( not CancelConnection( $share->{LocalName}, 0, 1 )) {
        print "disconnection error:n", win32err();
    }
}

相关内容

  • 没有找到相关文章

最新更新