Thread Array zippen/Entpacken (10 answers)
Opened by ITobiI at 2015-10-14 11:34

ITobiI
 2015-10-14 11:34
#182595 #182595
User since
2015-09-10
70 Artikel
BenutzerIn
[default_avatar]
Hi, ich muss schon wieder ne Frage stellen und zwar weiß jemand wie ein Array zippen kann? Ich weiß zumindest das es so:
Code: (dl )
1
2
3
4
#packen
$zip_daten = '';
use IO::Compress::Zip qw(zip $ZipError);
$status = zip \@daten => \@zip_daten or die "zip schlug fehl: $ZipError\n";

Code: (dl )
1
2
3
4
#entpacken
$unzip_daten = '';
use IO::Uncompress::Unzip qw(unzip $UnzipError);
$status = unzip \@zip_daten => \@unzip_daten or die "unzip schlug fehl: $UnzipError\n";

nicht geht. Kann jemand helfen?

View full thread Array zippen/Entpacken