Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 43781 invoked from network); 9 Feb 2008 01:03:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Feb 2008 01:03:35 -0000 Received: (qmail 11807 invoked by uid 500); 9 Feb 2008 01:03:21 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 11737 invoked by uid 500); 9 Feb 2008 01:03:21 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 11725 invoked by uid 99); 9 Feb 2008 01:03:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2008 17:03:21 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Feb 2008 01:03:00 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id CAFD6714063 for ; Fri, 8 Feb 2008 17:03:07 -0800 (PST) Message-ID: <22045121.1202518987827.JavaMail.jira@brutus> Date: Fri, 8 Feb 2008 17:03:07 -0800 (PST) From: "Niall Pemberton (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (IO-119) Convenience "Builder" for creating complex FileFilter conditions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/IO-119?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Niall Pemberton updated IO-119: ------------------------------- Attachment: FileFilterBuilderTestCase.java FileFilterBuilder.java Isn't that what we already have in FileFilterUtils? http://commons.apache.org/io/api-release/org/apache/commons/io/filefilter/FileFilterUtils.html New version attached - I don't think theres an intuitive way to do and/or together - so I've simplified by removing that, add singleton instances for AND/OR, added regex and provided better size / lastmodified methods. So for example, to create a file filter for the following conditions - Either, directories which are not hidden and not named ".svn" - or, files which have a suffix of ".java" FileFilterBuilder directoryBuilder = FileFilterBuilder.AND .isDirectory() .isHidden(false) .not().name(".svn"); FileFilterBuilder fileBuilder = FileFilterBuilder.AND .isFile() .suffix(".java"); FileFilter filter = FileFilterBuilder.OR .add(directoryBuilder) .add(fileBuilder) .toFileFilter(); > Convenience "Builder" for creating complex FileFilter conditions > ---------------------------------------------------------------- > > Key: IO-119 > URL: https://issues.apache.org/jira/browse/IO-119 > Project: Commons IO > Issue Type: Improvement > Components: Filters > Affects Versions: 1.3.1 > Reporter: Niall Pemberton > Assignee: Niall Pemberton > Priority: Minor > Fix For: 2.x > > Attachments: FileFilterBuilder.java, FileFilterBuilderTestCase.java > > > I'd like to add a new convenience "builder" class (FileFilterBuilder) to make it easier to create complex FileFilter using Commons IO's IOFileFilter implementations. > Heres an example of how it can be used to create a IOFileFilter for the following conditions: > - Either, directories which are not hidden and not named ".svn" > - or, files which have a suffix of ".java" > IOFileFilter filter = FileFilterBuilder.orBuilder() > .and().isDirectory().isHidden(false).not().name(".svn").end() > .and().isFile().suffix(".java").end() > .getFileFilter(); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.