Thread Funktionen für Dateihandling gesucht (21 answers)
Opened by kami at 2010-03-28 13:06

kami
 2010-03-30 08:50
#135469 #135469
User since
2010-03-17
92 Artikel
BenutzerIn
[default_avatar]
Hi,

okay danke für die Antwort. Ist nun echt fast fertig, eine Sache läuft nur noch schief. So musste ich das Skript jetzt anpassen:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
my $rar_check=File::Spec->join($verzeichnis, '*.rar');

if(bsd_glob($rar_check))
{
  for $source_path (bsd_glob($rar_check))  
  {
    if(-f $source_path)
    {   
      print "Das file ".$source_path." wird nach ".$finaldir entpackt.";
      my $rar = Archive::Rar->new(-archive => "../../..".qq("$source_path");
      my $res=$rar->Extract(-files=>qq("$finaldir"), -quiet => 1 );
      die "Error $res in extracting from $archive\n" if ( $res );
entpackt.\n";
    }
  }
}


Linie 10 ist jetzt die interessante. Weil er sonst immer noch die Unterverzeichnisse mit vor den Path dran hängt in denen das Skriptfile liegt. Wie kann ich das noch schöner machen?

Gruß kami

View full thread Funktionen für Dateihandling gesucht