Thread File handliing problem: *gähn* (5 answers)
Opened by FlorianL at 2007-07-12 17:09

FlorianL
 2007-07-12 17:09
#78415 #78415
User since
2007-05-18
142 Artikel
BenutzerIn
[default_avatar]
ich hab für meinen bot ein statfile angelegt.

wenn datei nicht vorhanden -> erstellen und 1 reinschreiben,
wenn datei vorhanden -> auslesen und wert $var zuweisen

nun wird aber immer wieder die datei neu erstellt, und ich weiss nicht wieso? liegts am operator?

Code (perl): (dl )
1
2
3
4
5
6
7
my $statsfile = ("$config{username}.dat");
if (-e $statsfile) {
        system("touch $statsfile && echo 1 > $statsfile");
}
open(STATS, '+>', "$statsfile") or die "Error: Couldnt open $statsfile";
my @globatts = <STATS>;
my $globalatts = $globatts[0];


<schnipp>

Code (perl): (dl )
1
2
3
4
5
6
7
sub attack {
        print color("green"), "Attack started...\n", color("reset"), "This Session: ", color("white"), "$sessionatts\n", color("reset"), color
("white"), "Global: $globalatts\n", color("reset");
        $sessionatts++;
        $globalatts++;
        print STATS $globalatts;
        [...]


ich weiss das ich normal kein array bräuchte, aber wenn ich STATS ner $var zuweise klappts nich...?!

View full thread File handliing problem: *gähn*