Thread Abbruch beim Einlesen einer Datei (3 answers)
Opened by lord_astfgl at 2007-07-06 13:51

bloonix
 2007-07-07 05:33
#78255 #78255
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
[quote=lord_astfgl,06.07.2007, 11:51]
Code: (dl )
if ($res==0) {print "OK\n"; last;};
[/quote]
Das verstehe ich nicht ganz! Warum springst du hier aus der Schleife,
obwohl du eventuell noch garnicht zu Ende gelesen hast?

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;

my $diafile="RT_4.dia";
open(FDIA, $diafile) or die "cannot open $diafile";

my $read_len = 8;
my $tot_len  = 0;
my $file_len = (stat($diafile))[7];
print "Dateigroesse $file_len Bytes\n";

while ( my $len = sysread(FDIA, my $rec, $read_len) ) { # bis eof lesen
  if (!defined $len) {
     next if $! =~ /^Interrupted/;
     die "system read error: $!";
  }  

  # $rec Verarbeitung

  $tot_len += $len;
  warn "read $tot_len/$file_len\n";
}
\n\n

<!--EDIT|opi|1183772256-->
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Abbruch beim Einlesen einer Datei