Thread Fehlerfreie Übertragung einer Datei (74 answers)
Opened by ITobiI at 2015-09-15 17:14

ITobiI
 2015-10-01 19:04
#182477 #182477
User since
2015-09-10
70 Artikel
BenutzerIn
[default_avatar]
Er gibt mir immer folgende Fehlermeldungen aus:

Unsuccessfull stat on filename containing newline at /usr/lib/perl5/5.16.2/IO/Compress/Base/Common.pm line 317

Use of uninitialized value $UnzipError in concatenation(.) or string at root/.../UDP_server.pl line 80

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
#Entpacke
$unzip_daten = '';
use IO::Uncompress::Unzip qw(unzip $UnzipError);
$status = unzip $zip_daten => $unzip_daten or die "unzip schlug fehl: $UnzipError\n";

View full thread Fehlerfreie Übertragung einer Datei