in reply to Re^5: 7zip a folder
in thread 7zip a folder
$date = strftime("%Y-%m-%d", localtime); mkdir my $foldername = "D:/log_script/Archive/$date"; my @cmd = 'D:/app/7-Zip/7z.exe', 'a', '-mx9', 'D:/log_script/Archive/target.zip', '$foldername/*.log' ); print 'about to execute: ', Dumper \@cmd; system @cmd;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: 7zip a folder
by Corion (Patriarch) on Nov 06, 2017 at 19:24 UTC |