Return-Path: Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Delivered-To: mailing list dev@ant.apache.org Received: (qmail 95518 invoked from network); 16 May 2003 16:58:30 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 16 May 2003 16:58:30 -0000 Received: (qmail 11789 invoked by uid 50); 16 May 2003 17:00:39 -0000 Date: 16 May 2003 17:00:39 -0000 Message-ID: <20030516170039.11788.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: dev@ant.apache.org Cc: Subject: DO NOT REPLY [Bug 12267] - Add ability to unzip into separate folders X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12267 Add ability to unzip into separate folders ------- Additional Comments From mcrocker@markcrocker.com 2003-05-16 17:00 ------- I am working on a different solution to the same problem. I believe that my solution is more elegant because it simply adds a Mapper to the unjar, untar, unwar unzip tasks. This is much more flexible and consistent with the copy task. Should I submit my code to this bug or create a new one? An example of my proposed use is: This unpacks all files ending in .jar or .zip in the source directory and puts the contents of each into a subdirectory of the preverified directory with the same name as the original archive file without the trailing .jar or .zip. For example, the contents of src/purifier.zip and src/ant.jar will be extracted to preverified/purifier/ and preverified/ant/ directories respectively.