Jump to content

Counting the number of files in a Zip file.


MilesWilson

Recommended Posts

Hello!

Can anyone help me with this? I want to be able to count the number of files in an uploaded zip file.

I have this code:
[code]
<?php
$zip = zip_open("images.zip");
/* At this point I would like to echo another peice of javascript, telling the parent how many files there are in the zip */
if ($zip) {
  while ($zip_entry = zip_read($zip)) {
      if (zip_entry_open($zip, $zip_entry, "r")) {
                $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
          $name = zip_entry_name($zip_entry);
$stream = fopen('images/'.$name, "w");
          fwrite($stream, $buf) or die("helllp!");
          zip_entry_close($zip_entry);
echo "<script language='javascript'> window.parent.displayImage('".$name."'); </script>";
ob_flush();
flush();
sleep(3);
      }
  }
  zip_close($zip);
}

?>
[/code]

The sleep(3) is there to replace the code I will write shortly, which resizes the image. In the meantime, sleep() means I get a simulation of the time passing.

Thanks in advance.

Miles
Link to comment
Share on other sites

  • 5 months later...
[quote author=vidyashankara link=topic=100577.msg397178#msg397178 date=1152899863]
This works only on tar files, If you want it for a zip file, just use a command to list the files in the zip file in the $command statement instead!

[/quote]

and what exactly would that command be? I'm not fluent with Linux at all.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.