in reply to Net::FTP Corrupting zip files


If you are transferring a zip file to a Windows machine the transfer mode should be binary to avoid any acsii/bin problems on the Windows side. Try this before using put():
$ftp->binary();

--
John.

Replies are listed 'Best First'.
Re^2: Net::FTP Corrupting zip files
by Anonymous Monk on Jun 30, 2015 at 15:30 UTC
    Thanks a lot, you solved also my trouble... Leo