How to unzip files via an FTP connection?

115,973

Solution 1

It is not possible to unzip files over an FTP connection. FTP stands for "File Transfer Protocol", which was only designed to transfer and partly manage files on the remote end, but not to execute commands. To unpack an archive you'd have to execute a program like tar, bzip2 or similar, but that's not possible via a FTP connection.

You need another session which allows you to execute commands, like SSH. Or you unpack the archive on your machine and transfer the contents via FTP, which will be considerable slower if you have a large number of small files because of the overhead of FTP.

Solution 2

Little bit out of context answer but surely works. If you are running a Apache + php on that ftp directory then upload your zip file in that folder and create extractor.php:

$zip = new ZipArchive;
if ($zip->open('my_zip.zip') === TRUE) {
    $zip->extractTo('/path/to/my/zip');
    $zip->close();
    echo 'ok';
}

and then hit url eg: http://example.com/extractor.php bingo php will extract that zip for you.

Solution 3

You can do it if you mount ftp resource using curlftpfs:

curlftpfs ftp://ftp.server.org/ /path/to/mountpoint

then

unzip /path/to/mount/test.zip

Solution 4

http://linux.about.com/od/commands/a/blcmdl1_unzipx.htm

simple case - unzip test.zip

Solution 5

Is your goal to unzip it on the external server, or do you want to pull the archive contents to your own computer?

The first case is not solved by FTP, but by SSH or similar techniques as described in other answers.

If you just want to get the unzipped contents "directly" to your own computer without first explicitly transferring the files and then unzipping, you could e.g. mount the FTP site as a folder and unzip it as a normal zip file to a location on your local computer. This will in practice stream the file contents directly to the unzip program, so you technically do transfer the whole file, but only in its zipped state (presumably saving traffic) and the contents will appear directly on your local computer without the explicit intermediate step.

I don't know how the zip file format is specified concerning just unzipping a part of a zip file; if you need to transfer the whole file nevertheless or only the compressed part corresponding to that file. I don't see any real technical reasons as to why it wouldn't be possible to do this kind of selective transfer (the FTP protocol allows only transferring partial files to enable resuming).

Share:
115,973

Related videos on Youtube

Hearaman
Author by

Hearaman

![Hearaman Software Developer from Bangalore, Software Developer from vaddigudem][1] I am very glad to be here in Stackoverflow community, my favorite and one of the great websites i ever visit. My name is hearaman and i'm software developer from bangalore, India. I am working on Web Services using PHP and Java programming languages. I like jQuery programming and i like to develop asynchronous web sites using this beautiful programming language. E-Mail: [email protected]

Updated on September 18, 2022

Comments

  • Hearaman
    Hearaman almost 2 years

    I have connected to my remote server via FTP and I got a directory listing. I have few zip files in the list.

    Is it possible to unzip the file (Ex: test.zip)?. If yes, what is the command?

  • Canadian Luke
    Canadian Luke almost 12 years
    To remember the letters: eXtract Zee Files
  • Hearaman
    Hearaman almost 12 years
    invalid command is coming in my console.
  • Sreejith B Naick
    Sreejith B Naick almost 12 years
    (Requires root permision)install tar by sudo apt-get install tar
  • Sreejith B Naick
    Sreejith B Naick almost 12 years
    try to open the ftp link in Nautilus,right click on the zip file, and check whether there is "extract here" option.
  • Kruug
    Kruug about 11 years
    @Hearaman the command unzip.
  • NetVicious
    NetVicious over 7 years
    If won't save you nothing of transfer, because the unzip process will be done by your computer and not on the server which should be the optimized way to do it.
  • JonathanDavidArndt
    JonathanDavidArndt over 6 years
    This command works on the local terminal, but can NOT be run over an FTP connection (even when using the site FTP command)
  • Stepo
    Stepo over 5 years
    very useful script, you can use getcwd() for this folder aka unix pwd in the script