in reply to How to create zip on FTP server from client machine using perl
Does your FTP server support creating a ZIP file for you? Does this feature work with any other client you know?
If yes, look at Net::FTP and its ->cmd ->quot function to do the same from Perl.
If no, you will have to download all files yourself using Net::FTP and then use Archive::Zip to create the ZIP file on your client.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to create zip on FTP server from client machine using perl
by Mjpaddy (Acolyte) on Nov 22, 2016 at 09:43 UTC | |
by marto (Cardinal) on Nov 22, 2016 at 09:55 UTC | |
by Corion (Patriarch) on Nov 22, 2016 at 14:28 UTC |