Thread Netzwerkverzeichnis mit opendir (16 answers)
Opened by Gast at 2006-01-20 02:48

paidopoieo
 2006-01-24 01:45
#62088 #62088
User since
2005-12-02
96 Artikel
BenutzerIn
[default_avatar]
Hallo,
Dankeschoen, das mit dem Cpan Modul hat sehr gut geklappt, jedoch hab ich jetzt ein anderes Problem, bei dem folgenden Code:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/perl

use strict;
use warnings;
use POSIX;
use Filesys::SmbClient;



my $smb = new Filesys::SmbClient(username => "Hubert");

my $fd = $smb->opendir("smb://bioboss/shared/Hubert/Blast");
my @thefiles = $smb->readdir($fd);


close($fd);

#foreach(@thefiles) {
#
#}


my $file;
my @raw_data;
my $count;
my @array;


print "Start entering foreach.....\n";

foreach $file (@thefiles)
{
#print $file;
open (DAT, $file) || die ("Could not open file");
@raw_data = <DAT>;
foreach my $wrestler (@raw_data)

{

#print "Hallo",@raw_data;

#print "opening example\n";


open (bigShot, ">>hello_Jesus.txt") || die ("Could not open file. $!");

print bigShot ($wrestler);

close (bigShot);

}



print "finished\n";

$count++;
}

print "finished reading all Files.....closing Directory\n";
print $count;


bekomm ich folgende Fehlermeldung:

Code: (dl )
Could not open file at /home/Hubert/installed/eclipse/workspace/Database_Search/networkAccess.pl line 34.


kann damit jemand was anfangen, wieso und warum...

vielen Dank im voraus

View full thread Netzwerkverzeichnis mit opendir