Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.5.5

Bug #10219 Not any Archive inside an archive wont be recognises while extracting
Submitted: 2007-02-28 12:37 UTC
From: marius dot metzler at gmx dot de Assigned: cbrunet
Status: Verified Package: File_Archive (version 1.5.3)
PHP Version: 5.0.4 OS: Windows xp
Roadmaps: 1.5.5    
Subscription  


 [2007-02-28 12:37 UTC] marius dot metzler at gmx dot de (horr)
Description: ------------ When I would like to read an archive's content the archives inside wont be recognised. Having this structure: test.zip // this is the archive I want to read test1.txt dontknowthename1.zip dontknowthename2.zip test2.txt Test script: --------------- $source=File_Archive::read("test.zip/"); // read the archive's content $source->close(); while($source->next()) { echo $source->getFilename()."<br>\n"; // output content files } Expected result: ---------------- test1.txt dontknowthename1.zip dontknowthename2.zip test2.txt Actual result: -------------- test1.txt test2.txt

Comments

 [2007-03-08 09:24 UTC] marius dot metzler at gmx dot de
Description: ------------ When I would like to read an archive's content, archives inside wont be recognised. Having this structure: test.zip // this is the archive I want to read test1.txt dontknowthename1.zip dontknowthename2.zip test2.txt Test script: --------------- $source=File_Archive::read("test.zip/"); // read the archive's content $source->close(); while($source->next()) { echo $source->getFilename()."<br>\n"; // output content files } Expected result: ---------------- test1.txt dontknowthename1.zip dontknowthename2.zip test2.txt Actual result: -------------- test1.txt test2.txt
 [2008-06-04 19:09 UTC] cbrunet (Charles Brunet)
I will have to look further on that, but it doesn't prevent extracting well the archive.