Thread .rar mit Perl unkomprimiert verpacken?
(11 answers)
Opened by KarlaCluft at 2013-02-11 17:30
Dass der Comment extra hinzugefĆ¼gt wird ist ein guter Hinweis! Danke!
Aber es scheint SO nicht zu funktionieren... Mir ist aber auch nicht klar warum. habe es so versucht: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 use Archive::Rar::Passthrough; my $rar = Archive::Rar::Passthrough->new(); if (not $rar) { print "Could not find your 'rar' command'.\n"; } $rar->run( command => 'a', switches => ['-m0'], archive => 'my.rar', filelist_files => [ 'test.txt' ], ); $rar->run( command => 'c', archive => 'my.rar', ); Last edited: 2013-02-13 00:31:55 +0100 (CET) |