我需要在這裏的perl.enter代碼中創建一個zip文件 Exisiting文件名是2.csv我想一個腳本,使它2.zip 我試圖在不使用CPAN模塊的情況下在perl中創建ZIP文件
my $file = 'dispatch_report_seg_flo.csv' ;
# Retrieve the namme of the file to archive.
print("Name the file to archive: ");
# Confirm the file exists, if not exit the program.
(-e $file) or die("Cannot find file `$file_nm`.\n");
# Zip the file.
print("Trying file name '$file.zip'");
system("zip 'dispatch.zip' '$file'");
my $file1 = 'dispatch.zip';
u能告訴我什麼都是您所遇到的模塊? –
爲什麼我發佈的代碼好,但不是我發佈到CPAN的代碼? – ikegami
你忘了問一個問題!你有什麼問題?你得到了什麼錯誤? – ikegami