blue_cowdawg has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl -w use strict; + use POSIX; use Filesys::SmbClient; + my $smb = new Filesys::SmbClient(username => "temp01", password =>"secret-hush-hush-password", workgroup => "ourWorkgroup", debug => 10) or die $!; + my $fd = $smb->opendir("smb://BKPEBW2K10/data") or die $!; foreach my $n ($smb->readdir($fd)) {print $n,"\n";} closedir ($fd);
When this code is run it issues at the spot where we open the file handle for the directory read it bombs with a
Not enough space at ./smbtest.pl line 45.
Anybody out there see this? What is out of space?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: FileSys::SmbClient returns odd error at odd time.
by samtregar (Abbot) on Nov 15, 2004 at 22:16 UTC | |
by blue_cowdawg (Monsignor) on Nov 15, 2004 at 22:27 UTC |