Thread .rar mit Perl unkomprimiert verpacken?
(11 answers)
Opened by KarlaCluft at 2013-02-11 17:30
Habs jetzt
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 use Archive::Rar::Passthrough; my $rar = Archive::Rar::Passthrough->new(); if (not $rar) { print "Could not find your 'rar' command'.\n"; } my $errorcode = $rar->run( command => 'a', switches => ['-m0'], archive => 'my.rar', filelist_files => [ 'test.txt' ], ); if ($errorcode) { print "There was an error running 'rar': " . $rar->explain_error($retval) . "\n"; my $output = $rar->get_stdout(); my $errors = $rar->get_stderr(); print "The 'rar' command said (if anything):\n" . $output . "\nAnd spammed on STDERR:\n" . $errors . "\n"; } so gemacht! Klappt super! Mir ist aber nicht ganz klar wie ich ein comment setze... Code (perl): (dl
)
command => 'a','cw [comment]' , funktioniert so aber leider nicht! alles andere geht, setzt halt nur kein Comment! |