I need to rewrite some java 7 code input code that should run on a Java 6 virtual machine.
The implementation uses convenient Java 7 features such as autocomplete, Pathsand Files.
To be more specific, I need to process type expressions /tmp/foo/*.barto return all .bar files (currently implemented with Files.newDirectoryStream(dir, glob)).
Does anyone know a convenient library for this?
ivani source
share