@@ -58,37 +58,51 @@ Enhancements from 1.2
5858 - New IOFileFilter implementation
5959 - Accepts files where File.isFile() is true
6060 - In other words it filters out directories
61+ - Singleton instance provided (FILE)
6162
6263- CanReadFileFilter
6364 - New IOFileFilter implementation
6465 - Accepts files where File.canRead() is true
66+ - Singleton instances provided (CAN_READ/CANNOT_READ/READ_ONLY)
6567
6668- CanWriteFileFilter
6769 - New IOFileFilter implementation
6870 - Accepts files where File.canWrite() is true
71+ - Singleton instances provided (CAN_WRITE/CANNOT_WRITE)
6972
7073- HiddenFileFilter
7174 - New IOFileFilter implementation
7275 - Accepts files where File.isHidden() is true
76+ - Singleton instances provided (HIDDEN/VISIBLE)
7377
7478- EmptyFileFilter
7579 - New IOFileFilter implementation
7680 - Accepts files or directories that are empty
81+ - Singleton instances provided (EMPTY/NO_EMPTY)
7782
7883- TrueFileFilter/FalseFileFilter/DirectoryFileFilter
7984 - New singleton instance constants (TRUE/FALSE/DIRECTORY)
8085 - The new constants are more JDK 1.5 friendly with regards to static imports
8186 (whereas if everything uses INSTANCE, then they just clash)
8287 - The old INSTANCE constants are still present and have not been deprecated
8388
89+ - FileFilterUtils
90+ - new sizeFileFilter(long minimumSize, long maximumSize) method which
91+ creates a filter that accepts files within the specified size range.
92+
93+ - FileUtils
94+ - add methods to check if a file is older (i.e. isFileOlder()) - counterparts
95+ to the existing isFileNewer() methods.
96+
97+
8498
8599Feedback
86100--------
87101Open source works best when you give feedback:
88102http://jakarta.apache.org/commons/io/
89103
90- Please direct all bug reports to Bugzilla (prefix bug reports by [io])
91- http://issues.apache.org/bugzilla/buglist.cgi?product=Commons&component= IO
104+ Please direct all bug reports to JIRA
105+ http://issues.apache.org/jira/browse/ IO
92106
93107Or subscribe to the commons-user mailing list (prefix emails by [io])
94108http://jakarta.apache.org/site/mail.html
0 commit comments