We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import fr.inra.maiage.bibliome.util.streams.PatternFileFilter; import fr.inra.maiage.bibliome.util.streams.DirectorySourceStream; import java.util.regex.Pattern; import java.io.FileFilter; import fr.inra.maiage.bibliome.util.files.InputDirectory; InputDirectory dir = new InputDirectory("mydirectory"); FileFilter filter = new PatternFileFilter(Pattern.compile("\\.xml$"), false, false); new DirectorySourceStream("UTF-8", CompressionFilter.NONE, new InputDirectory("foo"), true, FileFilter filter)
This will not very well because sub-directories that don't match the filter will not be walked through.
Solution: filter should not apply to directories and sub-directories.
filter
The text was updated successfully, but these errors were encountered:
rbossy
No branches or pull requests
This will not very well because sub-directories that don't match the filter will not be walked through.
Solution:
filter
should not apply to directories and sub-directories.The text was updated successfully, but these errors were encountered: