in reply to Re: Archive::ZIP - Zip selection of files
in thread Archive::ZIP - Zip selection of files

Thank you for your answer. By using your solution I would not be able to get the names of the files, I guess. But I need them (including the path) to delete them afterwards. I'm not happy with executing a script on and on also, but I'm using it for just ten of my users. They have stored a huge amount of pictures. That is why I'm constantly running in a script timeout.
  • Comment on Re^2: Archive::ZIP - Zip selection of files

Replies are listed 'Best First'.
Re^3: Archive::ZIP - Zip selection of files
by Corion (Patriarch) on Apr 10, 2015 at 09:22 UTC

    Why would you use Archive::Zip to get the names of the files not yet in the archive?

    Use File::Find to get the names of the files not in the archive.

      Because I would have to compare the source folders/files with those in the archive. To much code in my opinion. All I want is the script selecting - let's say - 300 files, adding them to an archive and deleting the source files from its source folders. Then execute again. Next 300 files ... and so on, up until the source folders are empty and one (now big archive) is written. I'm still wondering why the script is totally ignoring the selection of entries in the array.

        Have you considered what ->addTree is actually doing? It is not a function that purely returns information.

        I think you should rethink your approach and consider getting two lists, one list of the files in the archive and one list of the files not in the archive, then eliminate the members in both lists (see perlfaq4) and then add the appropriate number of remaining files to the archive.