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

Gast wer
 2010-03-29 14:23
#135443 #135443
Archive::Rar quotet den Pfad nicht. Darum muss man das hier selber machen.
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 => $source_path );
      my $res=$rar->Extract(-files=>qq("$finaldir"), -quiet => 1 );
      die "Error $res in extracting from $archive\n" if ( $res );
entpackt.\n";
    }
  }
}

View full thread Funktionen für Dateihandling gesucht